rust/src/test/ui/issue-1962.stderr
2017-12-14 23:23:07 +03:00

18 lines
394 B
Plaintext

error: denote infinite loops with `loop { ... }`
--> $DIR/issue-1962.rs:14:3
|
14 | while true { //~ ERROR denote infinite loops with `loop
| ^---------
| |
| ___help: use `loop`
| |
15 | | i += 1;
16 | | if i == 5 { break; }
17 | | }
| |___^
|
= note: requested on the command line with `-D while-true`
error: aborting due to previous error