Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
match
/
expr-match-panic-fn.rs
blob: a07c2c6af8f79af25e771f5d097fb110efaaa345 [
file
] [
log
] [
blame
]
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
fn
f
()
->
!
{
panic
!()
}
fn
g
()
->
isize
{
let
x
=
match
true
{
true
=>
f
(),
false
=>
10
,
};
return
x
;
}
fn
main
()
{
g
();
}