blob: 05fb6fecffaeca1079f66e9816af6e20b5156e5c (
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
|
error: multiple declared defaults
--> $DIR/multiple-defaults.rs:6:10
|
LL | #[derive(Default)]
| ^^^^^^^
...
LL | A,
| - first default
LL | #[default] // also "HELP make `A` default", but compiletest can't handle multispans
LL | B,
| - additional default
|
= note: only one variant can be default
= note: this error originates in the derive macro `Default` (in Nightly builds, run with -Z macro-backtrace for more info)
error: multiple declared defaults
--> $DIR/multiple-defaults.rs:18:10
|
LL | #[derive(Default)]
| ^^^^^^^
...
LL | A,
| - first default
LL | #[default]
LL | A,
| - additional default
|
= note: only one variant can be default
= note: this error originates in the derive macro `Default` (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0428]: the name `A` is defined multiple times
--> $DIR/multiple-defaults.rs:23:5
|
LL | A,
| - previous definition of the type `A` here
LL | #[default]
LL | A,
| ^ `A` redefined here
|
= note: `A` must be defined only once in the type namespace of this enum
error: multiple declared defaults
--> $DIR/multiple-defaults.rs:31:18
|
LL | #[derive(Default)]
| ^^^^^^^
...
LL | $id,
| ---
| |
| first default
| additional default
...
LL | m! { A B }
| ---------- in this macro invocation
|
= note: only one variant can be default
= note: this error originates in the derive macro `Default` which comes from the expansion of the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0428`.
|