Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
match
/
expr-match-panic.rs
blob: d15b0a9cd726f7426f96dc38cc6a6d8772643eff [
file
]
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
fn
main
()
{
let
_x
=
match
true
{
false
=>
0
,
true
=>
panic
!(),
};
}