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.
|
2018-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:14:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
14 | while y < 10 {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^^
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-03-28 21:49:32 +00:00
|
|
|
= note: #[deny(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.
|
2018-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:19:11
|
2018-02-25 17:25:31 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
19 | 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.
|
2018-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:26:11
|
2018-02-25 17:25:31 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
26 | 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.
|
2018-04-03 14:41:30 +00:00
|
|
|
--> $DIR/infinite_loop.rs:70:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-04-03 14:41:30 +00:00
|
|
|
70 | 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.
|
2018-04-03 14:41:30 +00:00
|
|
|
--> $DIR/infinite_loop.rs:75:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-04-03 14:41:30 +00:00
|
|
|
75 | 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.
|
2018-04-03 14:41:30 +00:00
|
|
|
--> $DIR/infinite_loop.rs:79:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-04-03 14:41:30 +00:00
|
|
|
79 | 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.
|
2018-04-03 14:41:30 +00:00
|
|
|
--> $DIR/infinite_loop.rs:94:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-04-03 14:41:30 +00:00
|
|
|
94 | 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.
|
2018-04-03 14:41:30 +00:00
|
|
|
--> $DIR/infinite_loop.rs:99:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-04-03 14:41:30 +00:00
|
|
|
99 | while i < 3 {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^
|
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.
|
2018-04-03 14:41:30 +00:00
|
|
|
--> $DIR/infinite_loop.rs:162:15
|
2018-03-26 18:37:34 +00:00
|
|
|
|
|
2018-04-03 14:41:30 +00:00
|
|
|
162 | while self.count < n {
|
2018-03-26 21:24:57 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-03-26 18:37:34 +00:00
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2018-02-25 17:25:31 +00:00
|
|
|
|