mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-19 22:10:37 +00:00
9 lines
154 B
Rust
9 lines
154 B
Rust
//@ run-fail
|
|
//@ error-pattern:panic evaluated
|
|
//@ needs-subprocess
|
|
|
|
#[allow(unused_variables)]
|
|
fn main() {
|
|
let x = [panic!("panic evaluated"); 0];
|
|
}
|