20 lines
754 B
Plaintext
20 lines
754 B
Plaintext
|
error[E0658]: The attribute `a` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
||
|
--> $DIR/proc-macro-gates2.rs:23: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)
|
||
|
--> $DIR/proc-macro-gates2.rs:28:9
|
||
|
|
|
||
|
LL | #[a] //~ ERROR: unknown to the compiler
|
||
|
| ^^^^
|
||
|
|
|
||
|
= 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`.
|