blob: 36e1e4ecce7c9eb7453e145307f6e531cb20b990 [file] [log] [blame]
// run-pass
trait MyInt {
const ONE: Self;
}
impl MyInt for i32 {
const ONE: i32 = 1;
}
fn main() {
assert_eq!(1, <i32>::ONE);
}