]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/coherence-impl-trait-for-trait-object-safe.rs
Auto merge of #106853 - TimNN:undo-remap, r=oli-obk
[rust.git] / tests / ui / coherence / coherence-impl-trait-for-trait-object-safe.rs
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:
6 trait NotObjectSafe { fn eq(&self, other: Self); }
7 impl NotObjectSafe for dyn NotObjectSafe { }
8 //~^ ERROR E0038
9
10 fn main() { }