mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
14 lines
196 B
Rust
14 lines
196 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
|
|
};
|
|
}
|