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-27 15:57:55 +00:00
|
|
|
LL | / loop {
|
|
|
|
LL | | if let Some(_x) = y {
|
|
|
|
LL | | let _v = 1;
|
|
|
|
LL | | } else {
|
|
|
|
LL | | break;
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
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-27 15:57:55 +00:00
|
|
|
LL | / loop {
|
|
|
|
LL | | match y {
|
|
|
|
LL | | Some(_x) => true,
|
|
|
|
LL | | None => break,
|
|
|
|
LL | | };
|
|
|
|
LL | | }
|
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-27 15:57:55 +00:00
|
|
|
LL | / loop {
|
|
|
|
LL | | let x = match y {
|
|
|
|
LL | | Some(x) => x,
|
|
|
|
LL | | None => break,
|
2017-04-10 13:36:07 +00:00
|
|
|
... |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | let _str = "foo";
|
|
|
|
LL | | }
|
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-27 15:57:55 +00:00
|
|
|
LL | / loop {
|
|
|
|
LL | | let x = match y {
|
|
|
|
LL | | Some(x) => x,
|
|
|
|
LL | | None => break,
|
2017-04-10 13:36:07 +00:00
|
|
|
... |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | }
|
|
|
|
LL | | }
|
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-27 15:57:55 +00:00
|
|
|
LL | / loop {
|
|
|
|
LL | | let (e, l) = match "".split_whitespace().next() {
|
|
|
|
LL | | Some(word) => (word.is_empty(), word.len()),
|
|
|
|
LL | | None => break,
|
2017-04-10 13:36:07 +00:00
|
|
|
... |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | let _ = (e, l);
|
|
|
|
LL | | }
|
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-27 15:57:55 +00:00
|
|
|
LL | 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-27 15:57:55 +00:00
|
|
|
LL | 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-27 15:57:55 +00:00
|
|
|
LL | 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-27 15:57:55 +00:00
|
|
|
--> $DIR/while_loop.rs:134:5
|
|
|
|
|
|
|
|
|
LL | / loop {
|
|
|
|
LL | | let _ = match iter.next() {
|
|
|
|
LL | | Some(ele) => ele,
|
|
|
|
LL | | None => break,
|
|
|
|
LL | | };
|
|
|
|
LL | | loop {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^ 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-27 15:57:55 +00:00
|
|
|
--> $DIR/while_loop.rs:139:9
|
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
= 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-27 15:57:55 +00:00
|
|
|
--> $DIR/while_loop.rs:197:29
|
|
|
|
|
|
|
|
|
LL | while let Some(v) = y.next() {
|
|
|
|
| ^^^^^^^^ 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-27 15:57:55 +00:00
|
|
|
--> $DIR/while_loop.rs:225:26
|
|
|
|
|
|
|
|
|
LL | while let Some(..) = values.iter().next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in values.iter() { .. }`
|
2018-07-28 09:51:46 +00:00
|
|
|
|
|
|
|
error: aborting due to 12 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|