Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
associated-consts
/
associated-const-ufcs-infer-trait.rs
blob: ca44c9f45fc7854ad7faf575e4c289bf56033478 [
file
] [
log
] [
blame
]
// run-pass
trait
Foo
{
const
ID
:
i32
;
}
impl
Foo
for
i32
{
const
ID
:
i32
=
1
;
}
fn
main
()
{
assert_eq
!(
1
,
<
i32
>::
ID
);
}