mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 00:53:04 +00:00
11 lines
175 B
Rust
11 lines
175 B
Rust
//@ run-fail
|
|
//@ error-pattern:explicit panic
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
let _x = match true {
|
|
false => 0,
|
|
true => panic!(),
|
|
};
|
|
}
|