]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/ok_if_let.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / ok_if_let.stderr
index eac49032ed8b16f82db5a2e05031a743d017ef8d..4567493a7c2eb7fcc4cca10c5b48d408e8a4a57a 100644 (file)
@@ -1,11 +1,11 @@
 error: Matching on `Some` with `ok()` is redundant
-  --> $DIR/ok_if_let.rs:7:5
+  --> $DIR/ok_if_let.rs:13:5
    |
- | /     if let Some(y) = x.parse().ok() {
- | |         y
- | |     } else {
-10 | |         0
-11 | |     }
+LL | /     if let Some(y) = x.parse().ok() {
+LL | |         y
+LL | |     } else {
+LL | |         0
+LL | |     }
    | |_____^
    |
    = note: `-D clippy::if-let-some-result` implied by `-D warnings`