rust/src/test/ui/proc-macro/proc-macro-gates2.stderr

20 lines
719 B
Plaintext
Raw Normal View History

error[E0658]: The attribute `a` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
2018-12-25 08:56:47 -07:00
--> $DIR/proc-macro-gates2.rs:13:11
|
LL | fn _test6<#[a] T>() {}
| ^^^^
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `a` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
2018-12-25 08:56:47 -07:00
--> $DIR/proc-macro-gates2.rs:18:9
|
2019-03-09 15:03:44 +03:00
LL | #[a]
| ^^^^
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0658`.