rust/tests/ui/dyn-compatibility/bounds.rs
2024-10-10 01:13:29 +02:00

13 lines
224 B
Rust

// Traits with bounds mentioning `Self` are dyn-incompatible.
trait X {
type U: PartialEq<Self>;
}
fn f() -> Box<dyn X<U = u32>> {
//~^ ERROR the trait `X` cannot be made into an object
loop {}
}
fn main() {}