rust/tests/ui/dyn-compatibility/mention-correct-dyn-incompatible-trait.rs
2024-10-10 01:13:29 +02:00

23 lines
321 B
Rust

// issue: rust-lang/rust#19538
trait Foo {
fn foo<T>(&self, val: T);
}
trait Bar: Foo { }
pub struct Thing;
impl Foo for Thing {
fn foo<T>(&self, val: T) { }
}
impl Bar for Thing { }
fn main() {
let mut thing = Thing;
let test: &mut dyn Bar = &mut thing;
//~^ ERROR E0038
//~| ERROR E0038
}