]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/infallible_destructuring_match.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / infallible_destructuring_match.stderr
index bce83b91242e52180ddc5cf2446e8a212f640f74..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:28: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
    |
-28 | /     let data = match wrapper {
-29 | |         SingleVariantEnum::Variant(i) => i,
-30 | |     };
+LL | /     let data = match wrapper {
+LL | |         SingleVariantEnum::Variant(i) => i,
+LL | |     };
    | |______^ help: try this: `let SingleVariantEnum::Variant(data) = wrapper;`
    |
    = 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:49: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
    |
-49 | /     let data = match wrapper {
-50 | |         TupleStruct(i) => i,
-51 | |     };
+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:70: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
    |
-70 | /     let data = match wrapper {
-71 | |         Ok(i) => i,
-72 | |     };
+LL | /     let data = match wrapper {
+LL | |         Ok(i) => i,
+LL | |     };
    | |______^ help: try this: `let Ok(data) = wrapper;`
 
 error: aborting due to 3 previous errors