]> git.lizzy.rs Git - rust.git/blob - src/test/ui/block-result/block-must-not-have-result-while.rs
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / block-result / block-must-not-have-result-while.rs
1 fn main() {
2     while true { //~ WARN denote infinite loops with
3         true //~  ERROR mismatched types
4              //~| expected (), found bool
5     }
6 }