rust/src/test/compile-fail/block-must-not-have-result-while.rs
2012-03-10 20:38:03 -08:00

7 lines
116 B
Rust

// error-pattern:mismatched types: expected `()` but found `bool`
fn main() {
while true {
true
}
}