summaryrefslogtreecommitdiffstats
path: root/src/test/ui/object-safety/object-safety-bounds.rs
blob: 44bd369324a4b640345dc8c769f2d7034c28a927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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() {}