]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-32655.stderr
Rollup merge of #53326 - memoryruins:issue-27868-test, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-32655.stderr
1 error[E0658]: attributes of the form `#[derive_*]` are reserved for the compiler (see issue #29644)
2   --> $DIR/issue-32655.rs:16:9
3    |
4 LL |         #[derive_Clone] //~ ERROR attributes of the form
5    |         ^^^^^^^^^^^^^^^
6 ...
7 LL | foo!();
8    | ------- in this macro invocation
9    |
10    = help: add #![feature(custom_derive)] to the crate attributes to enable
11
12 error[E0658]: attributes of the form `#[derive_*]` are reserved for the compiler (see issue #29644)
13   --> $DIR/issue-32655.rs:28:5
14    |
15 LL |     #[derive_Clone] //~ ERROR attributes of the form
16    |     ^^^^^^^^^^^^^^^
17    |
18    = help: add #![feature(custom_derive)] to the crate attributes to enable
19
20 error: aborting due to 2 previous errors
21
22 For more information about this error, try `rustc --explain E0658`.