14 lines
199 B
Rust
14 lines
199 B
Rust
//@ run-fail
|
|
//@ error-pattern:explicit panic
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
let _x = if false {
|
|
0
|
|
} else if true {
|
|
panic!()
|
|
} else {
|
|
10
|
|
};
|
|
}
|