2018-12-02 13:27:37 -06:00
|
|
|
error: expected `:`, found `}`
|
2020-03-17 05:30:53 -05:00
|
|
|
--> $DIR/derive-bad.rs:6:10
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-03-17 05:30:53 -05:00
|
|
|
LL | #[derive(A)]
|
2022-09-26 09:13:38 -05:00
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| expected `:`
|
|
|
|
| while parsing this struct
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the derive macro `A` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2023-04-10 15:02:52 -05:00
|
|
|
error: proc-macro derive produced unparsable tokens
|
2020-03-17 05:30:53 -05:00
|
|
|
--> $DIR/derive-bad.rs:6:10
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-03-17 05:30:53 -05:00
|
|
|
LL | #[derive(A)]
|
|
|
|
| ^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2020-03-17 05:30:53 -05:00
|
|
|
error[E0428]: the name `A` is defined multiple times
|
|
|
|
--> $DIR/derive-bad.rs:9:1
|
|
|
|
|
|
|
|
|
LL | #[derive(A)]
|
|
|
|
| - previous definition of the type `A` here
|
|
|
|
...
|
|
|
|
LL | struct A;
|
|
|
|
| ^^^^^^^^^ `A` redefined here
|
|
|
|
|
|
|
|
|
= note: `A` must be defined only once in the type namespace of this module
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2020-03-17 05:30:53 -05:00
|
|
|
For more information about this error, try `rustc --explain E0428`.
|