mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
258 B
Rust
21 lines
258 B
Rust
//@ 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)
|
|
}
|
|
}
|