mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
23 lines
400 B
Rust
23 lines
400 B
Rust
// run-pass
|
|
|
|
#[derive(Clone, Copy)]
|
|
struct Foo {
|
|
array: [u64; 10240],
|
|
}
|
|
|
|
impl Foo {
|
|
const fn new() -> Self {
|
|
Self {
|
|
array: [0x1122_3344_5566_7788; 10240]
|
|
}
|
|
}
|
|
}
|
|
|
|
static BAR: [Foo; 10240] = [Foo::new(); 10240];
|
|
|
|
fn main() {
|
|
let bt = std::backtrace::Backtrace::force_capture();
|
|
println!("Hello, world! {:?}", bt);
|
|
println!("{:x}", BAR[0].array[0]);
|
|
}
|