rust/src/test/ui/custom_attribute.stderr

28 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00: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)
--> $DIR/custom_attribute.rs:13:1
2018-08-08 12:28:26 +00:00
|
LL | #[foo] //~ ERROR The attribute `foo`
| ^^^^^^
2018-08-08 12:28:26 +00: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)
--> $DIR/custom_attribute.rs:15:5
2018-08-08 12:28:26 +00:00
|
LL | #[foo] //~ ERROR The attribute `foo`
| ^^^^^^
|
= 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)
--> $DIR/custom_attribute.rs:17:5
2018-08-08 12:28:26 +00:00
|
LL | #[foo] //~ ERROR The attribute `foo`
| ^^^^^^
2018-08-08 12:28:26 +00: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`.