Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
associated-consts
/
associated-const-self-type.rs
blob: b7d9f99e216738249090bfedf6f7d0a74228c185 [
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
);
}