rust/tests/ui/coherence/coherence-impl-trait-for-trait-dyn-compatible.rs
2024-10-10 01:13:29 +02:00

12 lines
375 B
Rust

// Test that we give suitable error messages when the user attempts to
// impl a trait `Trait` for its own object type.
// If the trait is dyn-incompatible, we give a more tailored message
// because we're such schnuckels:
trait DynIncompatible { fn eq(&self, other: Self); }
impl DynIncompatible for dyn DynIncompatible { }
//~^ ERROR E0038
//~| ERROR E0046
fn main() { }