File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -2156,6 +2156,7 @@ pub struct Attribute {
2156
2156
pub span : Span ,
2157
2157
}
2158
2158
2159
+ // Compatibility impl to avoid churn, consider removing.
2159
2160
impl std:: ops:: Deref for Attribute {
2160
2161
type Target = AttrItem ;
2161
2162
fn deref ( & self ) -> & Self :: Target { & self . item }
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ impl<'a> Parser<'a> {
166
166
/// PATH `[` TOKEN_STREAM `]`
167
167
/// PATH `{` TOKEN_STREAM `}`
168
168
/// PATH
169
- /// PATH `=` TOKEN_TREE
169
+ /// PATH `=` UNSUFFIXED_LIT
170
170
/// The delimiters or `=` are still put into the resulting token stream.
171
171
pub fn parse_attr_item ( & mut self ) -> PResult < ' a , ast:: AttrItem > {
172
172
let item = match self . token . kind {
@@ -262,7 +262,7 @@ impl<'a> Parser<'a> {
262
262
263
263
/// Matches the following grammar (per RFC 1559).
264
264
///
265
- /// meta_item : IDENT ( '=' UNSUFFIXED_LIT | '(' meta_item_inner? ')' )? ;
265
+ /// meta_item : PATH ( '=' UNSUFFIXED_LIT | '(' meta_item_inner? ')' )? ;
266
266
/// meta_item_inner : (meta_item | UNSUFFIXED_LIT) (',' meta_item_inner)? ;
267
267
pub fn parse_meta_item ( & mut self ) -> PResult < ' a , ast:: MetaItem > {
268
268
let nt_meta = match self . token . kind {
Original file line number Diff line number Diff line change
1
+ // check-pass
2
+
3
+ macro_rules! check { ( $meta: meta) => ( ) }
4
+
5
+ check ! ( meta( a b c d) ) ;
6
+ check ! ( meta[ a b c d] ) ;
7
+ check ! ( meta { a b c d } ) ;
8
+ check ! ( meta) ;
9
+ check ! ( meta = 0 ) ;
10
+
11
+ fn main ( ) { }
You can’t perform that action at this time.
0 commit comments