1 2 3 4 5 6 7 8 9 10 11 12 13
// run-pass struct Foo; impl Foo { const BAR: f32 = 1.5; } const FOOBAR: f32 = <Foo>::BAR; fn main() { assert_eq!(1.5f32, FOOBAR); }