mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
145 B
Rust
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);
|
|
}
|