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-04-03 09:41:30 -05:00
|
|
|
--> $DIR/infinite_loop.rs:70:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-04-03 09:41:30 -05:00
|
|
|
70 | 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-04-03 09:41:30 -05:00
|
|
|
--> $DIR/infinite_loop.rs:75:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-04-03 09:41:30 -05:00
|
|
|
75 | 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-04-03 09:41:30 -05:00
|
|
|
--> $DIR/infinite_loop.rs:79:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-04-03 09:41:30 -05:00
|
|
|
79 | 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-04-03 09:41:30 -05:00
|
|
|
--> $DIR/infinite_loop.rs:94:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-04-03 09:41:30 -05:00
|
|
|
94 | 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-04-03 09:41:30 -05:00
|
|
|
--> $DIR/infinite_loop.rs:99:11
|
2018-03-01 16:23:41 -06:00
|
|
|
|
|
2018-04-03 09:41:30 -05:00
|
|
|
99 | 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-04-03 09:41:30 -05:00
|
|
|
--> $DIR/infinite_loop.rs:162:15
|
2018-03-26 13:37:34 -05:00
|
|
|
|
|
2018-04-03 09:41:30 -05:00
|
|
|
162 | 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
|
|
|
|