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

154 lines
5.3 KiB
Plaintext
Raw Normal View History

2019-04-10 18:40:12 -05:00
error[E0658]: non-builtin inner attributes are unstable
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:11:5
|
2019-03-09 06:03:44 -06:00
LL | #![a]
| ^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54726
= help: add #![feature(custom_inner_attributes)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: non-builtin inner attributes are unstable
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:18:5
|
2019-03-09 06:03:44 -06:00
LL | #![a]
| ^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54726
= help: add #![feature(custom_inner_attributes)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: custom attributes cannot be applied to modules
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:14:1
|
2019-03-09 06:03:44 -06:00
LL | #[a]
| ^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: custom attributes cannot be applied to modules
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:18:5
|
2019-03-09 06:03:44 -06:00
LL | #![a]
| ^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
error: custom attribute invocations must be of the form #[foo] or #[foo(..)], the macro name must only be followed by a delimiter token
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:22:1
|
2019-03-09 06:03:44 -06:00
LL | #[a = "y"]
| ^^^^^^^^^^
2019-04-10 18:40:12 -05:00
error[E0658]: custom attributes cannot be applied to statements
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:31:5
|
2019-03-09 06:03:44 -06:00
LL | #[a]
| ^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: custom attributes cannot be applied to statements
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:35:5
|
2019-03-09 06:03:44 -06:00
LL | #[a]
| ^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: custom attributes cannot be applied to statements
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:39:5
|
2019-03-09 06:03:44 -06:00
LL | #[a]
| ^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: custom attributes cannot be applied to expressions
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:43:14
|
2019-03-09 06:03:44 -06:00
LL | let _x = #[a] 2;
| ^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: custom attributes cannot be applied to expressions
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:46:15
|
2019-03-09 06:03:44 -06:00
LL | let _x = [#[a] 2];
| ^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: custom attributes cannot be applied to expressions
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:49:14
|
2019-03-09 06:03:44 -06:00
LL | let _x = #[a] println!();
| ^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: procedural macros cannot be expanded to types
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:53:13
|
2019-03-09 06:03:44 -06:00
LL | let _x: m!(u32) = 3;
| ^^^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: procedural macros cannot be expanded to patterns
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:54:12
|
2019-03-09 06:03:44 -06:00
LL | if let m!(Some(_x)) = Some(3) {}
| ^^^^^^^^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: procedural macros cannot be expanded to statements
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:56:5
|
2019-03-09 06:03:44 -06:00
LL | m!(struct S;);
| ^^^^^^^^^^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: procedural macros cannot be expanded to statements
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:57:5
|
2019-03-09 06:03:44 -06:00
LL | m!(let _x = 3;);
| ^^^^^^^^^^^^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: procedural macros cannot be expanded to expressions
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:59:14
|
2019-03-09 06:03:44 -06:00
LL | let _x = m!(3);
| ^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
2019-04-10 18:40:12 -05:00
error[E0658]: procedural macros cannot be expanded to expressions
2018-12-25 09:56:47 -06:00
--> $DIR/proc-macro-gates.rs:60:15
|
2019-03-09 06:03:44 -06:00
LL | let _x = [m!(3)];
| ^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
= help: add #![feature(proc_macro_hygiene)] to the crate attributes to enable
error: aborting due to 17 previous errors
For more information about this error, try `rustc --explain E0658`.