2020-11-18 16:49:20 -06:00
|
|
|
error[E0658]: inner macro attributes are unstable
|
|
|
|
--> $DIR/proc-macro-gates.rs:10:8
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | #![empty_attr]
|
2020-11-18 16:49:20 -06:00
|
|
|
| ^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #54726 <https://github.com/rust-lang/rust/issues/54726> for more information
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(custom_inner_attributes)]` to the crate attributes to enable
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2020-11-18 16:49:20 -06:00
|
|
|
error[E0658]: inner macro attributes are unstable
|
|
|
|
--> $DIR/proc-macro-gates.rs:14:8
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | #![empty_attr]
|
2020-11-18 16:49:20 -06:00
|
|
|
| ^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #54726 <https://github.com/rust-lang/rust/issues/54726> for more information
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(custom_inner_attributes)]` to the crate attributes to enable
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2019-12-01 08:07:38 -06:00
|
|
|
error: key-value macro attributes are not supported
|
2019-09-07 17:42:12 -05:00
|
|
|
--> $DIR/proc-macro-gates.rs:17:1
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | #[empty_attr = "y"]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2019-04-10 18:40:12 -05:00
|
|
|
error[E0658]: custom attributes cannot be applied to statements
|
2019-09-07 17:42:12 -05:00
|
|
|
--> $DIR/proc-macro-gates.rs:26:5
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | #[empty_attr]
|
|
|
|
| ^^^^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #54727 <https://github.com/rust-lang/rust/issues/54727> for more information
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2019-04-10 18:40:12 -05:00
|
|
|
error[E0658]: custom attributes cannot be applied to statements
|
2019-09-07 17:42:12 -05:00
|
|
|
--> $DIR/proc-macro-gates.rs:30:5
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | #[empty_attr]
|
|
|
|
| ^^^^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #54727 <https://github.com/rust-lang/rust/issues/54727> for more information
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2019-04-10 18:40:12 -05:00
|
|
|
error[E0658]: custom attributes cannot be applied to statements
|
2019-09-07 17:42:12 -05:00
|
|
|
--> $DIR/proc-macro-gates.rs:34:5
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | #[empty_attr]
|
|
|
|
| ^^^^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #54727 <https://github.com/rust-lang/rust/issues/54727> for more information
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2019-04-10 18:40:12 -05:00
|
|
|
error[E0658]: custom attributes cannot be applied to expressions
|
2019-09-07 17:42:12 -05:00
|
|
|
--> $DIR/proc-macro-gates.rs:38:14
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | let _x = #[identity_attr] 2;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #54727 <https://github.com/rust-lang/rust/issues/54727> for more information
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2019-04-10 18:40:12 -05:00
|
|
|
error[E0658]: custom attributes cannot be applied to expressions
|
2019-09-07 17:42:12 -05:00
|
|
|
--> $DIR/proc-macro-gates.rs:41:15
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | let _x = [#[identity_attr] 2];
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #54727 <https://github.com/rust-lang/rust/issues/54727> for more information
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2019-04-10 18:40:12 -05:00
|
|
|
error[E0658]: custom attributes cannot be applied to expressions
|
2019-09-07 17:42:12 -05:00
|
|
|
--> $DIR/proc-macro-gates.rs:44:14
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | let _x = #[identity_attr] println!();
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #54727 <https://github.com/rust-lang/rust/issues/54727> for more information
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
|
2018-12-02 13:27:37 -06:00
|
|
|
|
2020-11-12 14:42:42 -06:00
|
|
|
error: inner macro attributes are unstable
|
|
|
|
--> $DIR/proc-macro-gates.rs:49:8
|
|
|
|
|
|
|
|
|
LL | #![test]
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
|
2022-09-18 10:55:36 -05:00
|
|
|
= note: `#[deny(soft_unstable)]` on by default
|
2020-11-12 14:42:42 -06:00
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-12-02 13:27:37 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|