2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:20:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while y < 10 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^^
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `#[deny(clippy::while_immutable_condition)]` on by default
|
2018-02-25 11:25:31 -06:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:25:11
|
2018-02-25 11:25:31 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while y < 10 && x < 3 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2019-10-25 01:46:25 -05:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-02-25 11:25:31 -06:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:32:11
|
2018-02-25 11:25:31 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while !cond {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^
|
2019-10-25 01:46:25 -05:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-02-25 11:25:31 -06:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:76:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while i < 3 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^
|
2019-10-25 01:46:25 -05:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:81:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while i < 3 && j > 0 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-10-25 01:46:25 -05:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:85:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while i < 3 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^
|
2019-10-25 01:46:25 -05:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:100:11
|
2018-12-27 09:57:55 -06:00
|
|
|
|
|
|
|
|
LL | while i < 3 {
|
|
|
|
| ^^^^^
|
2019-10-25 01:46:25 -05:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:105:11
|
2018-12-27 09:57:55 -06:00
|
|
|
|
|
|
|
|
LL | while i < 3 {
|
|
|
|
| ^^^^^
|
2019-10-25 01:46:25 -05:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2021-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:171:15
|
2018-12-27 09:57:55 -06:00
|
|
|
|
|
|
|
|
LL | while self.count < n {
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-10-25 01:46:25 -05: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-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:179:11
|
2019-10-25 01:46:25 -05: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-08-19 16:57:15 -05:00
|
|
|
--> $DIR/infinite_loop.rs:186:11
|
2019-10-25 01:46:25 -05: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 13:37:34 -05:00
|
|
|
|
2019-10-25 01:46:25 -05:00
|
|
|
error: aborting due to 11 previous errors
|
2018-02-25 11:25:31 -06:00
|
|
|
|