summary refs log tree commit diff
path: root/src/test/ui/issue-32655.stderr
blob: a1323808a91ea7a3ca412d7aa649b0bc71e681c6 (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:9
   |
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:5
   |
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`.