Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
6d71251cf9e40326461f90f8ff9a7024706aea87
/
.
/
tests
/
ui
/
associated-consts
/
associated-const-in-global-const.rs
blob: 10b8f8ebada41761052de4d4295cfda0b6af454c [
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
);
}