rust/src/test/compile-fail/block-must-not-have-result-for.rs

7 lines
129 B
Rust
Raw Normal View History

// error-pattern:mismatched types: expected `()` but found `bool`
fn main() {
for vec::each(~[0]) {|_i|
true
}
}