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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:26:11
|
2018-10-07 00:18:06 +08:00
26 | 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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:31:11
|
2018-10-07 00:18:06 +08:00
31 | 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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:38:11
|
2018-10-07 00:18:06 +08:00
38 | 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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:82:11
|
2018-10-07 00:18:06 +08:00
82 | 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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:87:11
|
2018-10-07 00:18:06 +08:00
87 | 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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:91:11
|
2018-10-07 00:18:06 +08:00
91 | 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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:106:11
|
106 | 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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:111:11
|
2018-10-07 00:18:06 +08:00
111 | 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-10-07 00:18:06 +08:00
--> $DIR/infinite_loop.rs:174:15
|
2018-10-07 00:18:06 +08:00
174 | while self.count < n {
| ^^^^^^^^^^^^^^
error: aborting due to 9 previous errors