Sign in
rust
/
rust
/
d7a18fc052d1db50057d6fff023ca4bd8ec7617e
/
.
/
tests
/
ui
/
for-loop-while
/
for-loop-panic.rs
blob: 6c707b06297244a2da2657904edbbe8c0bd124d3 [
file
] [
log
] [
blame
]
//@ run-pass
pub
fn
main
()
{
let
x
:
Vec
<
isize
>
=
Vec
::
new
();
for
_ in
&
x
{
panic
!(
"moop"
);
}
}