2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:24:11
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | while y < 10 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^^
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2022-09-22 20:04:22 +04:00
|
|
|
= note: `#[deny(clippy::while_immutable_condition)]` on by default
|
2018-02-25 18:25:31 +01:00
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:31:11
|
2018-02-25 18:25:31 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | while y < 10 && x < 3 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2019-10-24 23:46:25 -07:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-02-25 18:25:31 +01:00
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:40:11
|
2018-02-25 18:25:31 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | while !cond {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^
|
2019-10-24 23:46:25 -07:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-02-25 18:25:31 +01:00
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:86:11
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | while i < 3 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^
|
2019-10-24 23:46:25 -07:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:93:11
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | while i < 3 && j > 0 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-10-24 23:46:25 -07:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:99:11
|
2018-03-01 23:23:41 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | while i < 3 {
|
2018-03-26 23:24:57 +02:00
|
|
|
| ^^^^^
|
2019-10-24 23:46:25 -07:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:116:11
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | while i < 3 {
|
|
|
|
| ^^^^^
|
2019-10-24 23:46:25 -07:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:123:11
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | while i < 3 {
|
|
|
|
| ^^^^^
|
2019-10-24 23:46:25 -07:00
|
|
|
|
|
|
|
|
= note: this may lead to an infinite or to a never running loop
|
2018-03-01 23:23:41 +01:00
|
|
|
|
2019-10-24 23:46:25 -07:00
|
|
|
error: variables in the condition are not mutated in the loop body
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:191:15
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | while self.count < n {
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-10-24 23:46:25 -07: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
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:201:11
|
2019-10-24 23:46:25 -07: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
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:210:11
|
2019-10-24 23:46:25 -07: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 20:37:34 +02:00
|
|
|
|
2023-07-31 23:53:53 +02:00
|
|
|
error: this argument is a mutable reference, but not used mutably
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/infinite_loop.rs:9:17
|
2023-07-31 23:53:53 +02:00
|
|
|
|
|
|
|
|
LL | fn fn_mutref(i: &mut i32) {
|
|
|
|
| ^^^^^^^^ help: consider changing to: `&i32`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-pass-by-ref-mut` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_pass_by_ref_mut)]`
|
2023-07-31 23:53:53 +02:00
|
|
|
|
2023-07-17 10:19:29 +02:00
|
|
|
error: aborting due to 12 previous errors
|
2018-02-25 18:25:31 +01:00
|
|
|
|