os-rust/tests/ui/associated-consts/associated-const-in-global-const.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
146 B
Rust
Raw Normal View History

//@ run-pass
2015-03-26 13:06:26 -06:00
struct Foo;
impl Foo {
const BAR: f32 = 1.5;
}
const FOOBAR: f32 = <Foo>::BAR;
fn main() {
assert_eq!(1.5f32, FOOBAR);
}