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

7 lines
156 B
Rust
Raw Normal View History

fn main() {
while true { //~ WARN denote infinite loops with
2015-01-12 06:01:44 +00:00
true //~ ERROR mismatched types
//~| expected (), found bool
}
}