mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
58 lines
2 KiB
Text
58 lines
2 KiB
Text
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:16:11
|
|
|
|
|
16 | while y < 10 {
|
|
| ^^^^^^
|
|
|
|
|
= note: #[deny(clippy::while_immutable_condition)] on by default
|
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:21:11
|
|
|
|
|
21 | while y < 10 && x < 3 {
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:28:11
|
|
|
|
|
28 | while !cond {
|
|
| ^^^^^
|
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:72:11
|
|
|
|
|
72 | while i < 3 {
|
|
| ^^^^^
|
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:77:11
|
|
|
|
|
77 | while i < 3 && j > 0 {
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:81:11
|
|
|
|
|
81 | while i < 3 {
|
|
| ^^^^^
|
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:96:11
|
|
|
|
|
96 | while i < 3 {
|
|
| ^^^^^
|
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:101:11
|
|
|
|
|
101 | while i < 3 {
|
|
| ^^^^^
|
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
|
--> $DIR/infinite_loop.rs:164:15
|
|
|
|
|
164 | while self.count < n {
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 9 previous errors
|
|
|