summary refs log tree commit diff
path: root/src/test/ui/issues/issue-32655.stderr
blob: f930217fe9ef5e0d311c84a9524cb8a194e81e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error[E0658]: attributes of the form `#[derive_*]` are reserved for the compiler (see issue #29644)
  --> $DIR/issue-32655.rs:16:11
   |
LL |         #[derive_Clone] //~ ERROR attributes of the form
   |           ^^^^^^^^^^^^
...
LL | foo!();
   | ------- in this macro invocation
   |
   = help: add #![feature(custom_derive)] to the crate attributes to enable

error[E0658]: attributes of the form `#[derive_*]` are reserved for the compiler (see issue #29644)
  --> $DIR/issue-32655.rs:28:7
   |
LL |     #[derive_Clone] //~ ERROR attributes of the form
   |       ^^^^^^^^^^^^
   |
   = help: add #![feature(custom_derive)] to the crate attributes to enable

error: aborting due to 2 previous errors

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