]> 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 e1371d924eb6673fca9860aee08e66db738ad752..4567493a7c2eb7fcc4cca10c5b48d408e8a4a57a 100644 (file)
@@ -1,14 +1,14 @@
 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 if-let-some-result` implied by `-D warnings`
+   = note: `-D clippy::if-let-some-result` implied by `-D warnings`
    = help: Consider matching on `Ok(y)` and removing the call to `ok` instead
 
 error: aborting due to previous error