2018-08-08 07:28:26 -05:00
|
|
|
error[E0004]: non-exhaustive patterns: `(Some(&[]), Err(_))` not covered
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/non-exhaustive-match-nested.rs:7:11
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | match (l1, l2) { //~ ERROR non-exhaustive patterns: `(Some(&[]), Err(_))` not covered
|
|
|
|
| ^^^^^^^^ pattern `(Some(&[]), Err(_))` not covered
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `A(C)` not covered
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/non-exhaustive-match-nested.rs:17:11
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | match x { //~ ERROR non-exhaustive patterns: `A(C)` not covered
|
|
|
|
| ^ pattern `A(C)` not covered
|
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`.
|