2018-03-26 13:37:34 -05: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:14:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
14 | while y < 10 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^^
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-03-28 16:49:32 -05:00
|
|
|
= note: #[deny(while_immutable_condition)] on by default
|
2018-02-25 11:25:31 -06:00
|
|
|
|
2018-03-26 13:37:34 -05: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:19:11
|
2018-02-25 11:25:31 -06:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
19 | while y < 10 && x < 3 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-02-25 11:25:31 -06:00
|
|
|
|
2018-03-26 13:37:34 -05: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:26:11
|
2018-02-25 11:25:31 -06:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
26 | while !cond {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^
|
2018-02-25 11:25:31 -06:00
|
|
|
|
2018-03-07 11:24:36 -06: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:64:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
64 | while i < 3 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2018-03-07 11:24:36 -06: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:69:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
69 | while i < 3 && j > 0 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2018-03-07 11:24:36 -06: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:73:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
73 | while i < 3 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2018-03-07 11:24:36 -06: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:88:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
88 | while i < 3 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2018-03-07 11:24:36 -06: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:93:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
93 | while i < 3 {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^
|
2018-03-01 16:23:41 -06:00
|
|
|
|
2018-03-26 13:37:34 -05: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 05:32:21 -05:00
|
|
|
--> $DIR/infinite_loop.rs:156:15
|
2018-03-26 13:37:34 -05:00
|
|
|
|
|
2018-03-26 05:32:21 -05:00
|
|
|
156 | while self.count < n {
|
2018-03-26 16:24:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-03-26 13:37:34 -05:00
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2018-02-25 11:25:31 -06:00
|
|
|
|