We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc630d0 commit 87f0237Copy full SHA for 87f0237
src/librustc_typeck/diagnostics.rs
@@ -34,6 +34,16 @@ let x_is_nonzero = x as bool;
34
```
35
"##,
36
37
+E0062: r##"
38
+This error indicates that during an attempt to build a struct or struct-like
39
+enum variant, one of the fields was specified more than once.
40
+"##,
41
+
42
+E0063: r##"
43
44
+enum variant, one of the fields was not provided.
45
46
47
E0081: r##"
48
Enum discriminants are used to differentiate enum variants stored in memory.
49
This error indicates that the same value was used for two or more variants,
@@ -136,8 +146,6 @@ register_diagnostics! {
136
146
E0059,
137
147
E0060,
138
148
E0061,
139
- E0062,
140
- E0063,
141
149
E0066,
142
150
E0067,
143
151
E0068,
0 commit comments