mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
296 B
Rust
18 lines
296 B
Rust
// run-pass
|
|
// Test that when you use ufcs form to invoke a trait method (on a
|
|
// trait object) everything works fine.
|
|
|
|
|
|
trait Foo {
|
|
fn test(&self) -> i32;
|
|
}
|
|
|
|
impl Foo for i32 {
|
|
fn test(&self) -> i32 { *self }
|
|
}
|
|
|
|
fn main() {
|
|
let a: &dyn Foo = &22;
|
|
assert_eq!(Foo::test(a), 22);
|
|
}
|