summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-type-bounds/supertrait-where-referencing-self.rs
blob: 72a6be9ffc38843a38ebf1346b3ea4aebc978645 (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
25
26
27
// check-pass

// Test that we do not get a cycle due to
// resolving `Self::Bar` in the where clauses
// on a trait definition (in particular, in
// a where clause that is defining a superpredicate).

trait Foo {
    type Bar;
}
trait Qux
where
    Self: Foo,
    Self: AsRef<Self::Bar>,
{
}
trait Foo2 {}

trait Qux2
where
    Self: Foo2,
    Self: AsRef<Self::Bar>,
{
    type Bar;
}

fn main() {}