mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
29 lines
589 B
Plaintext
29 lines
589 B
Plaintext
error: this loop never actually loops
|
|
--> never_loop.rs:8:5
|
|
|
|
|
8 | / loop {
|
|
9 | | break;
|
|
10 | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D never-loop` implied by `-D warnings`
|
|
|
|
error: this loop never actually loops
|
|
--> never_loop.rs:24:5
|
|
|
|
|
24 | / loop {
|
|
25 | | while true {
|
|
26 | | break
|
|
27 | | }
|
|
28 | | break
|
|
29 | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D never-loop` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
To learn more, run the command again with --verbose.
|