1 // Test that we give suitable error messages when the user attempts to 2 // impl a trait `Trait` for its own object type. 3 4 // If the trait is not object-safe, we give a more tailored message 5 // because we're such schnuckels: eq(&self, other: Self)6trait NotObjectSafe { fn eq(&self, other: Self); } 7 impl NotObjectSafe for dyn NotObjectSafe { } 8 //~^ ERROR E0038 9 main()10fn main() { } 11