rust/tests/ui/infallible_destructuring_match.stderr

29 lines
1.1 KiB
Text
Raw Normal View History

error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
2018-10-06 18:18:06 +02:00
--> $DIR/infallible_destructuring_match.rs:28:5
|
2018-10-06 18:18:06 +02:00
28 | / let data = match wrapper {
29 | | SingleVariantEnum::Variant(i) => i,
30 | | };
| |______^ 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`
2018-10-06 18:18:06 +02:00
--> $DIR/infallible_destructuring_match.rs:49:5
|
2018-10-06 18:18:06 +02:00
49 | / let data = match wrapper {
50 | | TupleStruct(i) => i,
51 | | };
| |______^ 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`
2018-10-06 18:18:06 +02:00
--> $DIR/infallible_destructuring_match.rs:70:5
|
2018-10-06 18:18:06 +02:00
70 | / let data = match wrapper {
71 | | Ok(i) => i,
72 | | };
| |______^ help: try this: `let Ok(data) = wrapper;`
error: aborting due to 3 previous errors