Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
binding
/
match-bot-2.rs
blob: 95b3406f0b579b8498a1643c7297d24157041b55 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
unreachable_code
)]
// n.b. This was only ever failing with optimization disabled.
fn
a
()
->
isize
{
match
return
1
{
2
=>
3
,
_
=>
panic
!()
}
}
pub
fn
main
()
{
a
();
}