summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0023.stderr
blob: a3610099294dad30d86403c91138084416386a98 (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
error[E0023]: this pattern has 1 field, but the corresponding tuple variant has 2 fields
  --> $DIR/E0023.rs:11:9
   |
LL |     Apple(String, String),
   |     --------------------- tuple variant defined here
...
LL |         Fruit::Apple(a) => {},
   |         ^^^^^^^^^^^^^^^ expected 2 fields, found 1

error[E0023]: this pattern has 3 fields, but the corresponding tuple variant has 2 fields
  --> $DIR/E0023.rs:12:9
   |
LL |     Apple(String, String),
   |     --------------------- tuple variant defined here
...
LL |         Fruit::Apple(a, b, c) => {},
   |         ^^^^^^^^^^^^^^^^^^^^^ expected 2 fields, found 3

error[E0023]: this pattern has 2 fields, but the corresponding tuple variant has 1 field
  --> $DIR/E0023.rs:13:9
   |
LL |     Pear(u32),
   |     --------- tuple variant defined here
...
LL |         Fruit::Pear(1, 2) => {},
   |         ^^^^^^^^^^^^^^^^^ expected 1 field, found 2

error[E0023]: this pattern has 2 fields, but the corresponding tuple variant has 1 field
  --> $DIR/E0023.rs:14:9
   |
LL |     Orange((String, String)),
   |     ------------------------ tuple variant defined here
...
LL |         Fruit::Orange(a, b) => {},
   |         ^^^^^^^^^^^^^^^^^^^ expected 1 field, found 2
   |
help: missing parenthesis
   |
LL |         Fruit::Orange((a, b)) => {},
   |                       ^    ^

error[E0023]: this pattern has 0 fields, but the corresponding tuple variant has 1 field
  --> $DIR/E0023.rs:15:9
   |
LL |     Banana(()),
   |     ---------- tuple variant defined here
...
LL |         Fruit::Banana() => {},
   |         ^^^^^^^^^^^^^^^ expected 1 field, found 0
   |
help: missing parenthesis
   |
LL |         Fruit::Banana(()) => {},
   |                      ^  ^

error: aborting due to 5 previous errors

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