Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
for-loop-while
/
break-value.rs
blob: 9fc49fa8181b15ea5b8f829379778ed16d128e31 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
unreachable_code
)]
// pretty-expanded FIXME #23616
fn
int_id
(
x
:
isize
)
->
isize
{
return
x
;
}
pub
fn
main
()
{
loop
{
int_id
(
break
);
}
}