]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/infallible_destructuring_match.stderr
iterate List by value
[rust.git] / tests / ui / infallible_destructuring_match.stderr
index 8ee73bbfde8d8eca5aa5783dfecc8bbbc577dc94..1b78db42014a2c5a3f493955138680a614780b5c 100644 (file)
@@ -1,27 +1,27 @@
-error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
-  --> $DIR/infallible_destructuring_match.rs:16:5
+error: you seem to be trying to use `match` to destructure a single infallible pattern. Consider using `let`
+  --> $DIR/infallible_destructuring_match.rs:26:5
    |
-16 | /     let data = match wrapper {
-17 | |         SingleVariantEnum::Variant(i) => i,
-18 | |     };
+LL | /     let data = match wrapper {
+LL | |         SingleVariantEnum::Variant(i) => i,
+LL | |     };
    | |______^ help: try this: `let SingleVariantEnum::Variant(data) = wrapper;`
    |
-   = note: `-D infallible-destructuring-match` implied by `-D warnings`
+   = note: `-D clippy::infallible-destructuring-match` implied by `-D warnings`
 
-error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
-  --> $DIR/infallible_destructuring_match.rs:37:5
+error: you seem to be trying to use `match` to destructure a single infallible pattern. Consider using `let`
+  --> $DIR/infallible_destructuring_match.rs:58:5
    |
-37 | /     let data = match wrapper {
-38 | |         TupleStruct(i) => i,
-39 | |     };
+LL | /     let data = match wrapper {
+LL | |         TupleStruct(i) => i,
+LL | |     };
    | |______^ help: try this: `let TupleStruct(data) = wrapper;`
 
-error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
-  --> $DIR/infallible_destructuring_match.rs:58:5
+error: you seem to be trying to use `match` to destructure a single infallible pattern. Consider using `let`
+  --> $DIR/infallible_destructuring_match.rs:90:5
    |
-58 | /     let data = match wrapper {
-59 | |         Ok(i) => i,
-60 | |     };
+LL | /     let data = match wrapper {
+LL | |         Ok(i) => i,
+LL | |     };
    | |______^ help: try this: `let Ok(data) = wrapper;`
 
 error: aborting due to 3 previous errors