rust/tests/ui/associated-consts/associated-const-const-eval.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
257 B
Rust
Raw Normal View History

// run-pass
trait Foo {
const NUM: usize;
}
impl Foo for i32 {
const NUM: usize = 1;
}
const FOO: usize = <i32 as Foo>::NUM;
fn main() {
assert_eq!(1, FOO);
match 1 {
<i32 as Foo>::NUM => {},
_ => assert!(false)
}
}