summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/object/bounds-cycle-1.rs
blob: 3146764927cd815393eee1cb41dc4ceb96782fce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Check that we don't have a cycle when we try to normalize `Self::U` in the
// bound below.

// check-pass

trait Is {
    type T;
}

impl<U> Is for U {
    type T = U;
}

trait Obj {
    type U: Is<T = Self::U>;
}

fn is_obj<T: ?Sized + Obj>(_: &T) {}

fn f(x: &dyn Obj<U = i32>) {
    is_obj(x)
}

fn main() {}