2018-09-16 09:20:47 +00:00
|
|
|
error[E0658]: The attribute `derive_Clone` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-32655.rs:6:11
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2018-09-16 09:20:47 +00:00
|
|
|
LL | #[derive_Clone] //~ ERROR attribute `derive_Clone` is currently unknown
|
2018-08-15 00:51:12 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2018-07-15 21:11:54 +00:00
|
|
|
...
|
|
|
|
LL | foo!();
|
|
|
|
| ------- in this macro invocation
|
|
|
|
|
|
2018-09-16 09:20:47 +00:00
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2018-09-16 09:20:47 +00:00
|
|
|
error[E0658]: The attribute `derive_Clone` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-32655.rs:18:7
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2018-09-16 09:20:47 +00:00
|
|
|
LL | #[derive_Clone] //~ ERROR attribute `derive_Clone` is currently unknown
|
2018-08-15 00:51:12 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2018-09-16 09:20:47 +00:00
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|