summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-consts/associated-const-self-type.rs
blob: 36e1e4ecce7c9eb7453e145307f6e531cb20b990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-pass

trait MyInt {
    const ONE: Self;
}

impl MyInt for i32 {
    const ONE: i32 = 1;
}

fn main() {
    assert_eq!(1, <i32>::ONE);
}