]> 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 42f60d4097d8b2982a8398abbbd84b7af6b12cc3..4567493a7c2eb7fcc4cca10c5b48d408e8a4a57a 100644 (file)
@@ -1,19 +1,14 @@
 error: Matching on `Some` with `ok()` is redundant
-  --> $DIR/ok_if_let.rs:7:5
+  --> $DIR/ok_if_let.rs:13:5
    |
-7  | /     if let Some(y) = x.parse().ok() {
-8  | |
-9  | |         y
-10 | |     } else {
-11 | |         0
-12 | |     }
+LL | /     if let Some(y) = x.parse().ok() {
+LL | |         y
+LL | |     } else {
+LL | |         0
+LL | |     }
    | |_____^
    |
-note: lint level defined here
-  --> $DIR/ok_if_let.rs:4:9
-   |
-4  | #![deny(if_let_some_result)]
-   |         ^^^^^^^^^^^^^^^^^^
+   = 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