Update issue_2356.stderr reference file

This commit is contained in:
flip1995 2020-04-25 20:07:55 +02:00
parent 44511d5ee6
commit dda1c8d8af
No known key found for this signature in database
GPG key ID: 2CEFCDB27ED0BE79

View file

@ -1,8 +1,8 @@
error: this loop could be written as a `for` loop error: this loop could be written as a `for` loop
--> $DIR/issue_2356.rs:15:29 --> $DIR/issue_2356.rs:15:9
| |
LL | while let Some(e) = it.next() { LL | while let Some(e) = it.next() {
| ^^^^^^^^^ help: try: `for e in it { .. }` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for e in it`
| |
note: the lint level is defined here note: the lint level is defined here
--> $DIR/issue_2356.rs:1:9 --> $DIR/issue_2356.rs:1:9