Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
block-must-not-have-result-for.rs
blob: 41a2182ba2b26923f803c41624e2abc2471ec881 [
file
]
// error-pattern:mismatched types: expected `()` but found `bool`
fn
main
()
{
for
vec
::
each
(~[
0
])
|
_i
|
{
true
}
}