Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
6d71251cf9e40326461f90f8ff9a7024706aea87
/
.
/
tests
/
ui
/
associated-consts
/
associated-const-inherent-impl.rs
blob: e8a313140a3bd7932e2b9bdaefed5711147e745b [
file
] [
log
] [
blame
]
//@ run-pass
struct
Foo
;
impl
Foo
{
const
ID
:
i32
=
1
;
}
fn
main
()
{
assert_eq
!(
1
,
Foo
::
ID
);
}