rust/tests/ui/infinite_loop.stderr

59 lines
2.1 KiB
Plaintext
Raw Normal View History

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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:32:11
|
2018-12-10 06:27:19 +01:00
32 | while y < 10 {
| ^^^^^^
|
= note: #[deny(clippy::while_immutable_condition)] on by default
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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:37:11
|
2018-12-10 06:27:19 +01:00
37 | while y < 10 && x < 3 {
| ^^^^^^^^^^^^^^^
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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:44:11
|
2018-12-10 06:27:19 +01:00
44 | while !cond {
| ^^^^^
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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:88:11
|
2018-12-10 06:27:19 +01:00
88 | while i < 3 {
| ^^^^^
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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:93:11
|
2018-12-10 06:27:19 +01:00
93 | while i < 3 && j > 0 {
| ^^^^^^^^^^^^^^
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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:97:11
|
2018-12-10 06:27:19 +01:00
97 | while i < 3 {
| ^^^^^
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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:112:11
2018-10-06 18:18:06 +02:00
|
2018-12-10 06:27:19 +01:00
112 | while i < 3 {
2018-10-06 18:18:06 +02: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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:117:11
|
2018-12-10 06:27:19 +01:00
117 | while i < 3 {
| ^^^^^
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-12-10 06:27:19 +01:00
--> $DIR/infinite_loop.rs:183:15
|
2018-12-10 06:27:19 +01:00
183 | while self.count < n {
| ^^^^^^^^^^^^^^
error: aborting due to 9 previous errors