Sign in
fuchsia
/
third_party
/
rust
/
0.8
/
.
/
src
/
test
/
run-pass
/
die-macro.rs
blob: f08e5f054a9da75651f4def6d7f05aa9217a879c [
file
]
// Just testing that fail!() type checks in statement or expr
#[
allow
(
unreachable_code
)];
fn
f
()
{
fail
!();
let
_x
:
int
=
fail
!();
}
pub
fn
main
()
{
}