2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:22: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
|
|
|
|
|
2019-07-18 22:35:32 +00:00
|
|
|
= note: `#[deny(clippy::while_immutable_condition)]` on by default
|
2019-10-25 06:46:25 +00:00
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-02-25 17:25:31 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:27: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
|
|
|
| ^^^^^^^^^^^^^^^
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-02-25 17:25:31 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:34: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
|
|
|
| ^^^^^
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-02-25 17:25:31 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:78: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
|
|
|
| ^^^^^
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:83: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
|
|
|
| ^^^^^^^^^^^^^^
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:87: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
|
|
|
| ^^^^^
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:102:11
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | while i < 3 {
|
|
|
|
| ^^^^^
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:107:11
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | while i < 3 {
|
|
|
|
| ^^^^^
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 22:23:41 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:173:15
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | while self.count < n {
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
|
|
|
|
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:181:11
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
LL | while y < 10 {
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
|
|
|
= note: this loop contains `return`s or `break`s
|
|
|
|
= help: rewrite it as `if cond { loop { } }`
|
|
|
|
|
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/infinite_loop.rs:188:11
|
2019-10-25 06:46:25 +00:00
|
|
|
|
|
|
|
|
LL | while y < 10 {
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
|
|
|
= note: this loop contains `return`s or `break`s
|
|
|
|
= help: rewrite it as `if cond { loop { } }`
|
2018-03-26 18:37:34 +00:00
|
|
|
|
2019-10-25 06:46:25 +00:00
|
|
|
error: aborting due to 11 previous errors
|
2018-02-25 17:25:31 +00:00
|
|
|
|