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-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:64:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
64 | 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-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:69:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
69 | 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-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:73:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
73 | 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-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:88:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
88 | 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-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:93:11
|
2018-03-01 22:23:41 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
93 | 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-03-26 10:32:21 +00:00
|
|
|
--> $DIR/infinite_loop.rs:156:15
|
2018-03-26 18:37:34 +00:00
|
|
|
|
|
2018-03-26 10:32:21 +00:00
|
|
|
156 | 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
|
|
|
|