mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
222 B
Rust
13 lines
222 B
Rust
// Traits with bounds mentioning `Self` are not object safe
|
|
|
|
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() {}
|