mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
11 lines
314 B
Plaintext
11 lines
314 B
Plaintext
warning: denote infinite loops with `loop { ... }`
|
|
--> $DIR/unicode_3.rs:4:45
|
|
|
|
|
LL | let s = "ZͨA͑ͦ͒͋ͤ͑̚L̄͑͋Ĝͨͥ̿͒̽̈́Oͥ͛ͭ!̏"; while true { break; }
|
|
| ^^^^^^^^^^ help: use `loop`
|
|
|
|
|
= note: `#[warn(while_true)]` on by default
|
|
|
|
warning: 1 warning emitted
|
|
|