about summary refs log tree commit diff
path: root/tests/ui/associated-consts/associated-const-self-type.rs
blob: b7d9f99e216738249090bfedf6f7d0a74228c185 (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);
}