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

7 lines
130 B
Rust
Raw Normal View History

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