2017-02-07 20:05:30 +00:00
|
|
|
error: this loop could be written as a `while let` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:15:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
15 | / loop {
|
|
|
|
16 | | if let Some(_x) = y {
|
|
|
|
17 | | let _v = 1;
|
|
|
|
18 | | } else {
|
|
|
|
19 | | break;
|
|
|
|
20 | | }
|
|
|
|
21 | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: try: `while let Some(_x) = y { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::while-let-loop` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `while let` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:29:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
29 | / loop {
|
|
|
|
30 | | match y {
|
|
|
|
31 | | Some(_x) => true,
|
|
|
|
32 | | None => break,
|
|
|
|
33 | | };
|
|
|
|
34 | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: try: `while let Some(_x) = y { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `while let` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:35:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
35 | / loop {
|
|
|
|
36 | | let x = match y {
|
|
|
|
37 | | Some(x) => x,
|
|
|
|
38 | | None => break,
|
2017-04-10 13:36:07 +00:00
|
|
|
... |
|
2018-12-10 05:27:19 +00:00
|
|
|
41 | | let _str = "foo";
|
|
|
|
42 | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: try: `while let Some(x) = y { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `while let` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:43:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
43 | / loop {
|
|
|
|
44 | | let x = match y {
|
|
|
|
45 | | Some(x) => x,
|
|
|
|
46 | | None => break,
|
2017-04-10 13:36:07 +00:00
|
|
|
... |
|
2018-12-10 05:27:19 +00:00
|
|
|
53 | | }
|
|
|
|
54 | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: try: `while let Some(x) = y { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `while let` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:71:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
71 | / loop {
|
|
|
|
72 | | let (e, l) = match "".split_whitespace().next() {
|
|
|
|
73 | | Some(word) => (word.is_empty(), word.len()),
|
|
|
|
74 | | None => break,
|
2017-04-10 13:36:07 +00:00
|
|
|
... |
|
2018-12-10 05:27:19 +00:00
|
|
|
77 | | let _ = (e, l);
|
|
|
|
78 | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: try: `while let Some(word) = "".split_whitespace().next() { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:81:33
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
81 | while let Option::Some(x) = iter.next() {
|
2018-01-29 04:18:11 +00:00
|
|
|
| ^^^^^^^^^^^ help: try: `for x in iter { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::while-let-on-iterator` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:86:25
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
86 | while let Some(x) = iter.next() {
|
2018-01-29 04:18:11 +00:00
|
|
|
| ^^^^^^^^^^^ help: try: `for x in iter { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:91:25
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
91 | while let Some(_) = iter.next() {}
|
2018-01-29 04:18:11 +00:00
|
|
|
| ^^^^^^^^^^^ help: try: `for _ in iter { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `while let` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:134:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
134 | / loop {
|
|
|
|
135 | | let _ = match iter.next() {
|
|
|
|
136 | | Some(ele) => ele,
|
|
|
|
137 | | None => break,
|
|
|
|
138 | | };
|
|
|
|
139 | | loop {}
|
|
|
|
140 | | }
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_____^ help: try: `while let Some(ele) = iter.next() { .. }`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:139:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
139 | loop {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-07-31 22:58:26 +00:00
|
|
|
error: this loop could be written as a `for` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:197:29
|
2017-07-31 22:58:26 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
197 | while let Some(v) = y.next() {
|
2018-01-29 04:18:11 +00:00
|
|
|
| ^^^^^^^^ help: try: `for v in y { .. }`
|
2017-07-31 22:58:26 +00:00
|
|
|
|
2018-07-28 09:51:46 +00:00
|
|
|
error: this loop could be written as a `for` loop
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/while_loop.rs:225:26
|
2018-07-28 09:51:46 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
225 | while let Some(..) = values.iter().next() {
|
2018-07-28 09:51:46 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in values.iter() { .. }`
|
|
|
|
|
|
|
|
error: aborting due to 12 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|