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

7 lines
116 B
Rust
Raw Normal View History

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