summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2008-non-exhaustive/enum_same_crate_empty_match.stderr
blob: de1bf8be8854ec31cd3b9dc4e6b9a1d278ac3b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
error: unreachable pattern
  --> $DIR/enum_same_crate_empty_match.rs:28:9
   |
LL |         _ => {}
   |         ^
   |
note: the lint level is defined here
  --> $DIR/enum_same_crate_empty_match.rs:1:9
   |
LL | #![deny(unreachable_patterns)]
   |         ^^^^^^^^^^^^^^^^^^^^

error[E0004]: non-exhaustive patterns: `NonExhaustiveEnum::Unit`, `NonExhaustiveEnum::Tuple(_)` and `NonExhaustiveEnum::Struct { .. }` not covered
  --> $DIR/enum_same_crate_empty_match.rs:33:11
   |
LL |     match NonExhaustiveEnum::Unit {}
   |           ^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonExhaustiveEnum::Unit`, `NonExhaustiveEnum::Tuple(_)` and `NonExhaustiveEnum::Struct { .. }` not covered
   |
note: `NonExhaustiveEnum` defined here
  --> $DIR/enum_same_crate_empty_match.rs:5:5
   |
LL | pub enum NonExhaustiveEnum {
   |          -----------------
LL |     Unit,
   |     ^^^^ not covered
LL |
LL |     Tuple(u32),
   |     ^^^^^ not covered
LL |
LL |     Struct { field: u32 }
   |     ^^^^^^ not covered
   = note: the matched value is of type `NonExhaustiveEnum`
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
   |
LL ~     match NonExhaustiveEnum::Unit {
LL +         NonExhaustiveEnum::Unit | NonExhaustiveEnum::Tuple(_) | NonExhaustiveEnum::Struct { .. } => todo!(),
LL +     }
   |

error[E0004]: non-exhaustive patterns: `NormalEnum::Unit`, `NormalEnum::Tuple(_)` and `NormalEnum::Struct { .. }` not covered
  --> $DIR/enum_same_crate_empty_match.rs:35:11
   |
LL |     match NormalEnum::Unit {}
   |           ^^^^^^^^^^^^^^^^ patterns `NormalEnum::Unit`, `NormalEnum::Tuple(_)` and `NormalEnum::Struct { .. }` not covered
   |
note: `NormalEnum` defined here
  --> $DIR/enum_same_crate_empty_match.rs:14:5
   |
LL | pub enum NormalEnum {
   |          ----------
LL |     Unit,
   |     ^^^^ not covered
LL |
LL |     Tuple(u32),
   |     ^^^^^ not covered
LL |
LL |     Struct { field: u32 }
   |     ^^^^^^ not covered
   = note: the matched value is of type `NormalEnum`
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
   |
LL ~     match NormalEnum::Unit {
LL +         NormalEnum::Unit | NormalEnum::Tuple(_) | NormalEnum::Struct { .. } => todo!(),
LL +     }
   |

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0004`.