rust/tests/ui/mismatched_types/issue-13033.rs

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() {}