Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
for-loop-fail.rs
blob: 6edebcbabd67f932c73a49e9f2ce4ef07bccc172 [
file
] [
log
] [
blame
]
fn
main
()
{
let
x
:
~[
int
]
=
~[];
for
x
.
each
|
_i
|
{
fail
~
"moop"
;
}
}