summaryrefslogtreecommitdiffstats
path: root/src/test/ui/closures/2229_closure_analysis/match/pattern-matching-should-fail.stderr
blob: fea5441ec673d063a8bbc644ad2da440057042c8 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
error[E0004]: non-exhaustive patterns: type `u8` is non-empty
  --> $DIR/pattern-matching-should-fail.rs:67:23
   |
LL |     let c1 = || match x { };
   |                       ^
   |
   = note: the matched value is of type `u8`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
   |
LL ~     let c1 = || match x {
LL +         _ => todo!(),
LL ~     };
   |

error[E0381]: used binding `x` isn't initialized
  --> $DIR/pattern-matching-should-fail.rs:8:23
   |
LL |     let x: !;
   |         - binding declared here but left uninitialized
LL |     let c1 = || match x { };
   |                       ^ `x` used here but it isn't initialized

error[E0381]: used binding `x` isn't initialized
  --> $DIR/pattern-matching-should-fail.rs:15:14
   |
LL |     let x: !;
   |         - binding declared here but left uninitialized
LL |     let c2 = || match x { _ => () };
   |              ^^       - borrow occurs due to use in closure
   |              |
   |              `x` used here but it isn't initialized

error[E0381]: used binding `variant` isn't initialized
  --> $DIR/pattern-matching-should-fail.rs:27:13
   |
LL |     let variant: !;
   |         ------- binding declared here but left uninitialized
LL |     let c = || {
   |             ^^ `variant` used here but it isn't initialized
LL |
LL |         match variant {
   |               ------- borrow occurs due to use in closure

error[E0381]: used binding `variant` isn't initialized
  --> $DIR/pattern-matching-should-fail.rs:39:13
   |
LL |     let variant: !;
   |         ------- binding declared here but left uninitialized
LL |     let c = || {
   |             ^^ `variant` used here but it isn't initialized
LL |         match variant {
   |               ------- borrow occurs due to use in closure

error[E0381]: used binding `g` isn't initialized
  --> $DIR/pattern-matching-should-fail.rs:54:15
   |
LL |     let g: !;
   |         - binding declared here but left uninitialized
...
LL |         match g { };
   |               ^ `g` used here but it isn't initialized

error[E0381]: used binding `t` isn't initialized
  --> $DIR/pattern-matching-should-fail.rs:56:19
   |
LL |     let t: !;
   |         - binding declared here but left uninitialized
...
LL |             match t { };
   |                   ^ `t` used here but it isn't initialized

error[E0381]: used binding `x` isn't initialized
  --> $DIR/pattern-matching-should-fail.rs:67:23
   |
LL |     let x: u8;
   |         - binding declared here but left uninitialized
LL |     let c1 = || match x { };
   |                       ^ `x` used here but it isn't initialized

error: aborting due to 8 previous errors

Some errors have detailed explanations: E0004, E0381.
For more information about an error, try `rustc --explain E0004`.