mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
230 B
Rust
10 lines
230 B
Rust
// run-fail
|
|
// error-pattern:panic evaluated
|
|
// ignore-emscripten no processes
|
|
|
|
#[allow(unused_variables)]
|
|
fn main() {
|
|
// This used to trigger an LLVM assertion during compilation
|
|
let x = [panic!("panic evaluated"); 2];
|
|
}
|