]> 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 62588a2ad7ce2d62fbe2a664a7d0b71dd15268df..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:25: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
    |
-25 | /     let data = match wrapper {
-26 | |         SingleVariantEnum::Variant(i) => i,
-27 | |     };
+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:46: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
    |
-46 | /     let data = match wrapper {
-47 | |         TupleStruct(i) => i,
-48 | |     };
+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:67: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
    |
-67 | /     let data = match wrapper {
-68 | |         Ok(i) => i,
-69 | |     };
+LL | /     let data = match wrapper {
+LL | |         Ok(i) => i,
+LL | |     };
    | |______^ help: try this: `let Ok(data) = wrapper;`
 
 error: aborting due to 3 previous errors