We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9af69fe commit 40f2ca2Copy full SHA for 40f2ca2
src/libsyntax/parse/token.rs
@@ -277,9 +277,10 @@ impl Token {
277
DotDot | DotDotDot | DotDotEq | // range notation
278
Lt | BinOp(Shl) | // associated path
279
ModSep | // global path
280
+ Lifetime(..) | // labeled loop
281
Pound => true, // expression attributes
282
Interpolated(ref nt) => match nt.0 {
- NtIdent(..) | NtExpr(..) | NtBlock(..) | NtPath(..) => true,
283
+ NtIdent(..) | NtExpr(..) | NtBlock(..) | NtPath(..) | NtLifetime(..) => true,
284
_ => false,
285
},
286
0 commit comments