Sign in
rust
/
rust
/
52dff85c4e5b68b8a5a871cf7a35b1bf9cbb5028
/
.
/
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
);
}
}