]> git.proxmox.com Git - rustc.git/blob - src/test/ui/rfc-2008-non-exhaustive/uninhabited/match_same_crate.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / rfc-2008-non-exhaustive / uninhabited / match_same_crate.stderr
1 error[E0004]: non-exhaustive patterns: type `UninhabitedStruct` is non-empty
2 --> $DIR/match_same_crate.rs:30:11
3 |
4 LL | match x {}
5 | ^
6 |
7 note: `UninhabitedStruct` defined here
8 --> $DIR/match_same_crate.rs:8:12
9 |
10 LL | pub struct UninhabitedStruct {
11 | ^^^^^^^^^^^^^^^^^
12 = note: the matched value is of type `UninhabitedStruct`
13 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
14 |
15 LL ~ match x {
16 LL + _ => todo!(),
17 LL ~ }
18 |
19
20 error[E0004]: non-exhaustive patterns: type `UninhabitedTupleStruct` is non-empty
21 --> $DIR/match_same_crate.rs:34:11
22 |
23 LL | match x {}
24 | ^
25 |
26 note: `UninhabitedTupleStruct` defined here
27 --> $DIR/match_same_crate.rs:13:12
28 |
29 LL | pub struct UninhabitedTupleStruct(!);
30 | ^^^^^^^^^^^^^^^^^^^^^^
31 = note: the matched value is of type `UninhabitedTupleStruct`
32 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
33 |
34 LL ~ match x {
35 LL + _ => todo!(),
36 LL ~ }
37 |
38
39 error[E0004]: non-exhaustive patterns: `UninhabitedVariants::Tuple(_)` and `UninhabitedVariants::Struct { .. }` not covered
40 --> $DIR/match_same_crate.rs:38:11
41 |
42 LL | match x {}
43 | ^ patterns `UninhabitedVariants::Tuple(_)` and `UninhabitedVariants::Struct { .. }` not covered
44 |
45 note: `UninhabitedVariants` defined here
46 --> $DIR/match_same_crate.rs:16:23
47 |
48 LL | pub enum UninhabitedVariants {
49 | -------------------
50 LL | #[non_exhaustive] Tuple(!),
51 | ^^^^^ not covered
52 LL | #[non_exhaustive] Struct { x: ! }
53 | ^^^^^^ not covered
54 = note: the matched value is of type `UninhabitedVariants`
55 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
56 |
57 LL ~ match x {
58 LL + UninhabitedVariants::Tuple(_) | UninhabitedVariants::Struct { .. } => todo!(),
59 LL ~ }
60 |
61
62 error: aborting due to 3 previous errors
63
64 For more information about this error, try `rustc --explain E0004`.