Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
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
);
}