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