Sign in
◑
Theme
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
test
/
ui
/
for-loop-while
/
break-value.rs
blob: 9fc49fa8181b15ea5b8f829379778ed16d128e31 [
file
]
// run-pass
#![
allow
(
unreachable_code
)]
// pretty-expanded FIXME #23616
fn
int_id
(
x
:
isize
)
->
isize
{
return
x
;
}
pub
fn
main
()
{
loop
{
int_id
(
break
);
}
}