2017-12-10 22:47:55 +03:00
|
|
|
error: denote infinite loops with `loop { ... }`
|
2020-07-02 14:32:12 +09:00
|
|
|
--> $DIR/issue-1962.rs:6:5
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2021-01-19 15:51:51 -08:00
|
|
|
LL | 'a: while true {
|
|
|
|
| ^^^^^^^^^^^^^^ help: use `loop`
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
|
= note: requested on the command line with `-D while-true`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|