mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 21:45:15 +00:00
7 lines
119 B
Rust
7 lines
119 B
Rust
static S : u64 = { { panic!("foo"); 0 } };
|
|
//~^ ERROR evaluation panicked: foo
|
|
|
|
fn main() {
|
|
println!("{:?}", S);
|
|
}
|