@@ -94,17 +94,8 @@ LL | let _x = #[identity_attr] println!();
94
94
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
95
95
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
96
96
97
- error[E0658]: procedural macros cannot be expanded to types
98
- --> $DIR/proc-macro-gates.rs:53:13
99
- |
100
- LL | let _x: identity!(u32) = 3;
101
- | ^^^^^^^^^^^^^^
102
- |
103
- = note: for more information, see https://github.com/rust-lang/rust/issues/54727
104
- = help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
105
-
106
97
error[E0658]: procedural macros cannot be expanded to patterns
107
- --> $DIR/proc-macro-gates.rs:54 :12
98
+ --> $DIR/proc-macro-gates.rs:53 :12
108
99
|
109
100
LL | if let identity!(Some(_x)) = Some(3) {}
110
101
| ^^^^^^^^^^^^^^^^^^^
@@ -113,7 +104,7 @@ LL | if let identity!(Some(_x)) = Some(3) {}
113
104
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
114
105
115
106
error[E0658]: procedural macros cannot be expanded to statements
116
- --> $DIR/proc-macro-gates.rs:57 :5
107
+ --> $DIR/proc-macro-gates.rs:56 :5
117
108
|
118
109
LL | empty!(struct S;);
119
110
| ^^^^^^^^^^^^^^^^^^
@@ -122,7 +113,7 @@ LL | empty!(struct S;);
122
113
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
123
114
124
115
error[E0658]: procedural macros cannot be expanded to statements
125
- --> $DIR/proc-macro-gates.rs:58 :5
116
+ --> $DIR/proc-macro-gates.rs:57 :5
126
117
|
127
118
LL | empty!(let _x = 3;);
128
119
| ^^^^^^^^^^^^^^^^^^^^
@@ -131,7 +122,7 @@ LL | empty!(let _x = 3;);
131
122
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
132
123
133
124
error[E0658]: procedural macros cannot be expanded to expressions
134
- --> $DIR/proc-macro-gates.rs:60 :14
125
+ --> $DIR/proc-macro-gates.rs:59 :14
135
126
|
136
127
LL | let _x = identity!(3);
137
128
| ^^^^^^^^^^^^
@@ -140,14 +131,14 @@ LL | let _x = identity!(3);
140
131
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
141
132
142
133
error[E0658]: procedural macros cannot be expanded to expressions
143
- --> $DIR/proc-macro-gates.rs:61 :15
134
+ --> $DIR/proc-macro-gates.rs:60 :15
144
135
|
145
136
LL | let _x = [empty!(3)];
146
137
| ^^^^^^^^^
147
138
|
148
139
= note: for more information, see https://github.com/rust-lang/rust/issues/54727
149
140
= help: add `#![feature(proc_macro_hygiene)]` to the crate attributes to enable
150
141
151
- error: aborting due to 17 previous errors
142
+ error: aborting due to 16 previous errors
152
143
153
144
For more information about this error, try `rustc --explain E0658`.
0 commit comments