summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-consts/defaults-cyclic-fail.rs
blob: 9ef0003da173fe2ff4c73010dc73a49ca0b77eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// build-fail

// Cyclic assoc. const defaults don't error unless *used*
trait Tr {
    const A: u8 = Self::B;
    //~^ cycle detected

    const B: u8 = Self::A;
}

// This impl is *allowed* unless its assoc. consts are used
impl Tr for () {}

fn main() {
    // This triggers the cycle error
    assert_eq!(<() as Tr>::A, 0);
}