Sign in
◑
Theme
rust
/
rust
/
df734af6ae8a7fdc287c5da23fe610573bf2a761
/
.
/
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
);
}
}