rust/tests/ui/associated-consts/associated-const-self-type.rs

14 lines
145 B
Rust

//@ run-pass
trait MyInt {
const ONE: Self;
}
impl MyInt for i32 {
const ONE: i32 = 1;
}
fn main() {
assert_eq!(1, <i32>::ONE);
}