mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
262 B
Rust
16 lines
262 B
Rust
//@ run-pass
|
|
|
|
struct Foo { value: u32 }
|
|
|
|
impl Foo {
|
|
const fn new() -> Foo {
|
|
Foo { value: 22 }
|
|
}
|
|
}
|
|
|
|
const FOO: Foo = Foo::new();
|
|
|
|
pub fn main() {
|
|
assert_eq!(FOO.value, 22);
|
|
let _: [&'static str; Foo::new().value as usize] = ["hey"; 22];
|
|
}
|