about summary refs log tree commit diff
path: root/src/tools/miri/tests/pass/associated-const.rs
blob: 331fbfcefde15919f2eec770c0828649b6ee1269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@revisions: stack tree
//@[tree]compile-flags: -Zmiri-tree-borrows
trait Foo {
    const ID: i32;
}

impl Foo for i32 {
    const ID: i32 = 1;
}

fn main() {
    assert_eq!(1, <i32 as Foo>::ID);
}