Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
associated-consts
/
associated-const-inherent-impl.rs
blob: e8a313140a3bd7932e2b9bdaefed5711147e745b [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
struct
Foo
;
impl
Foo
{
const
ID
:
i32
=
1
;
}
fn
main
()
{
assert_eq
!(
1
,
Foo
::
ID
);
}