2018-03-26 18:37:34 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:23:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while y < 10 {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^^
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: #[deny(clippy::while_immutable_condition)] on by default
|
2018-02-25 17:25:31 +00:00
|
|
|
|
2018-03-26 18:37:34 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:28:11
|
2018-02-25 17:25:31 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while y < 10 && x < 3 {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-02-25 17:25:31 +00:00
|
|
|
|
2018-03-26 18:37:34 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:35:11
|
2018-02-25 17:25:31 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while !cond {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^
|
2018-02-25 17:25:31 +00:00
|
|
|
|
2018-03-07 17:24:36 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:79:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while i < 3 {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2018-03-07 17:24:36 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:84:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while i < 3 && j > 0 {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2018-03-07 17:24:36 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:88:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while i < 3 {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2018-03-07 17:24:36 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:103:11
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | while i < 3 {
|
|
|
|
| ^^^^^
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2018-03-07 17:24:36 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:108:11
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | while i < 3 {
|
|
|
|
| ^^^^^
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2018-03-26 18:37:34 +00: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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/infinite_loop.rs:174:15
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | while self.count < n {
|
|
|
|
| ^^^^^^^^^^^^^^
|
2018-03-26 18:37:34 +00:00
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2018-02-25 17:25:31 +00:00
|
|
|
|