rust/src/test/ui/pattern/usefulness/non-exhaustive-match-nested.stderr

35 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0004]: non-exhaustive patterns: `(Some(&[]), Err(_))` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/non-exhaustive-match-nested.rs:5:11
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | match (l1, l2) {
2018-08-08 07:28:26 -05:00
| ^^^^^^^^ pattern `(Some(&[]), Err(_))` not covered
|
2021-01-28 10:01:36 -06:00
= note: the matched value is of type `(Option<&[T]>, Result<&[T], ()>)`
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
LL ~ (None, Ok(&[_, _, ..])) => "None, Ok(at least two elements)",
LL + (Some(&[]), Err(_)) => todo!()
|
2018-08-08 07:28:26 -05:00
error[E0004]: non-exhaustive patterns: `A(C)` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/non-exhaustive-match-nested.rs:15:11
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | match x {
| ^ pattern `A(C)` not covered
|
note: `T` defined here
--> $DIR/non-exhaustive-match-nested.rs:1:10
|
LL | enum T { A(U), B }
| - ^ not covered
= note: the matched value is of type `T`
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
LL ~ T::B => { panic!("goodbye"); }
LL + A(C) => todo!()
|
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0004`.