rust/tests/ui/associated-consts/associated-const-in-global-const.rs
2023-01-11 09:32:08 +00:00

14 lines
145 B
Rust

// run-pass
struct Foo;
impl Foo {
const BAR: f32 = 1.5;
}
const FOOBAR: f32 = <Foo>::BAR;
fn main() {
assert_eq!(1.5f32, FOOBAR);
}