blob: a7514a6b7922928e3afc8ae5068bfb748c6448bd (
plain)
1
2
3
4
5
6
7
8
9
10
|
warning: denote infinite loops with `loop { ... }`
--> $DIR/unicode_3.rs:12:45
|
12 | let s = "ZͨA͑ͦ͒͋ͤ͑̚L̄͑͋Ĝͨͥ̿͒̽̈́Oͥ͛ͭ!̏"; while true { break; }
| ----------^^^^^^^^^^^
| |
| help: use `loop`
|
= note: #[warn(while_true)] on by default
|