mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
319 B
Rust
15 lines
319 B
Rust
trait Foo {
|
|
fn bar(&mut self, other: &mut dyn Foo);
|
|
}
|
|
|
|
struct Baz;
|
|
|
|
impl Foo for Baz {
|
|
fn bar(&mut self, other: &dyn Foo) {}
|
|
//~^ ERROR method `bar` has an incompatible type for trait
|
|
//~| expected signature `fn(&mut Baz, &mut dyn Foo)`
|
|
//~| found signature `fn(&mut Baz, &dyn Foo)`
|
|
}
|
|
|
|
fn main() {}
|