Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
associated-consts
/
associated-const-in-global-const.rs
blob: 18d7a1215588756e2e371dc89713dcbecf7b06a5 [
file
] [
log
] [
blame
]
// run-pass
struct
Foo
;
impl
Foo
{
const
BAR
:
f32
=
1.5
;
}
const
FOOBAR
:
f32
=
<
Foo
>::
BAR
;
fn
main
()
{
assert_eq
!(
1.5f32
,
FOOBAR
);
}