2018-08-08 07:28:26 -05:00
|
|
|
error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/custom_attribute.rs:3:3
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-08 07:50:16 -05:00
|
|
|
LL | #[foo] //~ ERROR The attribute `foo`
|
2018-08-14 19:51:12 -05:00
|
|
|
| ^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
|
|
|
error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/custom_attribute.rs:5:7
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | #[foo] //~ ERROR The attribute `foo`
|
2018-08-14 19:51:12 -05:00
|
|
|
| ^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
|
|
|
error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/custom_attribute.rs:7:7
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-08 07:50:16 -05:00
|
|
|
LL | #[foo] //~ ERROR The attribute `foo`
|
2018-08-14 19:51:12 -05:00
|
|
|
| ^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|