Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
macros
/
die-macro.rs
blob: 2a726efe8225d478b45079a006a4e646a3482d3e [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
// Just testing that panic!() type checks in statement or expr
#![
allow
(
unreachable_code
)]
fn
f
()
{
panic
!();
let
_x
:
isize
=
panic
!();
}
pub
fn
main
()
{
}