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