2019-06-30 10:00:45 +00:00
|
|
|
error[E0658]: attributes starting with `rustc` are reserved for use by the `rustc` compiler
|
|
|
|
--> $DIR/feature-gate-rustc-attrs.rs:8:3
|
|
|
|
|
|
|
|
|
LL | #[rustc::unknown]
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(rustc_attrs)]` to the crate attributes to enable
|
2019-06-30 10:00:45 +00:00
|
|
|
|
|
|
|
error: macro `rustc::unknown` may not be used in attributes
|
|
|
|
--> $DIR/feature-gate-rustc-attrs.rs:8:1
|
|
|
|
|
|
|
|
|
LL | #[rustc::unknown]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0658]: attributes starting with `rustc` are reserved for use by the `rustc` compiler
|
|
|
|
--> $DIR/feature-gate-rustc-attrs.rs:13:12
|
|
|
|
|
|
|
|
|
LL | #[unknown::rustc]
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(rustc_attrs)]` to the crate attributes to enable
|
2019-06-30 10:00:45 +00:00
|
|
|
|
|
|
|
error: macro `unknown::rustc` may not be used in attributes
|
|
|
|
--> $DIR/feature-gate-rustc-attrs.rs:13:1
|
|
|
|
|
|
|
|
|
LL | #[unknown::rustc]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0658]: attributes starting with `rustc` are reserved for use by the `rustc` compiler
|
|
|
|
--> $DIR/feature-gate-rustc-attrs.rs:20:3
|
|
|
|
|
|
|
|
|
LL | #[rustc_unknown]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(rustc_attrs)]` to the crate attributes to enable
|
2019-06-30 10:00:45 +00:00
|
|
|
|
|
|
|
error[E0658]: The attribute `rustc_unknown` is currently unknown to the compiler and may have meaning added to it in the future
|
|
|
|
--> $DIR/feature-gate-rustc-attrs.rs:20:3
|
|
|
|
|
|
|
|
|
LL | #[rustc_unknown]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
|
2019-06-30 10:00:45 +00:00
|
|
|
|
2019-06-29 11:06:22 +00:00
|
|
|
error[E0658]: used by the test suite
|
2019-06-30 10:00:45 +00:00
|
|
|
--> $DIR/feature-gate-rustc-attrs.rs:18:1
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-06-29 11:06:22 +00:00
|
|
|
LL | #[rustc_dummy]
|
|
|
|
| ^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-04-11 18:42:06 +00:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(rustc_attrs)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-06-30 10:00:45 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|