Add tests

This commit is contained in:
Nadrieril 2020-12-17 00:42:49 +00:00
parent 2225ee1b62
commit 2309783a0b
7 changed files with 95 additions and 19 deletions

View file

@ -1,17 +1,17 @@
pub enum T {
T1(()),
T2(())
T2(()),
}
pub enum V {
V1(isize),
V2(bool)
V2(bool),
}
fn main() {
match (T::T1(()), V::V2(true)) {
//~^ ERROR non-exhaustive patterns: `(T1(()), V2(_))` not covered
//~^ ERROR non-exhaustive patterns: `(T1(()), V2(_))` not covered
(T::T1(()), V::V1(i)) => (),
(T::T2(()), V::V2(b)) => ()
(T::T2(()), V::V2(b)) => (),
}
}

View file

@ -1,12 +1,11 @@
fn foo(a: Option<usize>, b: Option<usize>) {
match (a,b) {
//~^ ERROR: non-exhaustive patterns: `(None, None)` not covered
(Some(a), Some(b)) if a == b => { }
(Some(_), None) |
(None, Some(_)) => { }
}
match (a, b) {
//~^ ERROR: non-exhaustive patterns: `(None, None)` not covered
(Some(a), Some(b)) if a == b => {}
(Some(_), None) | (None, Some(_)) => {}
}
}
fn main() {
foo(None, None);
foo(None, None);
}

View file

@ -1,8 +1,8 @@
error[E0004]: non-exhaustive patterns: `(None, None)` not covered
--> $DIR/issue-2111.rs:2:9
--> $DIR/issue-2111.rs:2:11
|
LL | match (a,b) {
| ^^^^^ pattern `(None, None)` not covered
LL | match (a, b) {
| ^^^^^^ pattern `(None, None)` not covered
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `(Option<usize>, Option<usize>)`

View file

@ -0,0 +1,14 @@
enum Foo {
A(bool),
B(bool),
C(bool),
}
fn main() {
match Foo::A(true) {
//~^ ERROR non-exhaustive patterns: `A(false)` not covered
Foo::A(true) => {}
Foo::B(true) => {}
Foo::C(true) => {}
}
}

View file

@ -0,0 +1,20 @@
error[E0004]: non-exhaustive patterns: `A(false)` not covered
--> $DIR/issue-56379.rs:8:11
|
LL | / enum Foo {
LL | | A(bool),
| | - not covered
LL | | B(bool),
LL | | C(bool),
LL | | }
| |_- `Foo` defined here
...
LL | match Foo::A(true) {
| ^^^^^^^^^^^^ pattern `A(false)` not covered
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `Foo`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0004`.