2018-03-26 20:37:34 +02:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:32:11
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
32 | while y < 10 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^^
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: #[deny(clippy::while_immutable_condition)] on by default
|
2018-02-25 18:25:31 +01:00
|
|
|
|
2018-03-26 20:37:34 +02:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:37:11
|
2018-02-25 18:25:31 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
37 | while y < 10 && x < 3 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-02-25 18:25:31 +01:00
|
|
|
|
2018-03-26 20:37:34 +02:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:44:11
|
2018-02-25 18:25:31 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
44 | while !cond {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^
|
2018-02-25 18:25:31 +01:00
|
|
|
|
2018-03-07 18:24:36 +01:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:88:11
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
88 | while i < 3 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2018-03-07 18:24:36 +01:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:93:11
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
93 | while i < 3 && j > 0 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2018-03-07 18:24:36 +01:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:97:11
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
97 | while i < 3 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2018-03-07 18:24:36 +01:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:112:11
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
112 | while i < 3 {
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2018-03-07 18:24:36 +01:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:117:11
|
2018-08-01 16:30:44 +02:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
117 | while i < 3 {
|
2018-08-01 16:30:44 +02:00
|
|
|
| ^^^^^
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2018-03-26 20:37:34 +02:00
|
|
|
error: Variable in the condition are not mutated in the loop body. This either leads to an infinite or to a never running loop.
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/infinite_loop.rs:183:15
|
2018-03-26 20:37:34 +02:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
183 | while self.count < n {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-03-26 20:37:34 +02:00
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2018-02-25 18:25:31 +01:00
|
|
|
|