Sign in
rust
/
rust
/
dae8ea92a7337b3c2c4db7d06de554fbcf2de2e8
/
.
/
tests
/
ui
/
for-loop-while
/
break-value.rs
blob: eb9ccb21203ba62395b72164b0f1a025a575cb42 [
file
]
//@ run-pass
#![
allow
(
unreachable_code
)]
fn
int_id
(
x
:
isize
)
->
isize
{
return
x
;
}
pub
fn
main
()
{
loop
{
int_id
(
break
);
}
}