rust/src/test/ui/issues/issue-32655.stderr

23 lines
918 B
Plaintext
Raw Normal View History

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)
--> $DIR/issue-32655.rs:16:11
2018-07-15 14:11:54 -07:00
|
LL | #[derive_Clone] //~ ERROR attribute `derive_Clone` is currently unknown
| ^^^^^^^^^^^^
2018-07-15 14:11:54 -07:00
...
LL | foo!();
| ------- in this macro invocation
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
2018-07-15 14:11:54 -07: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)
--> $DIR/issue-32655.rs:28:7
2018-07-15 14:11:54 -07:00
|
LL | #[derive_Clone] //~ ERROR attribute `derive_Clone` is currently unknown
| ^^^^^^^^^^^^
2018-07-15 14:11:54 -07:00
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
2018-07-15 14:11:54 -07:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0658`.