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.
I would expect the expression 'a: while false {} to be accepted by a $:expr matcher.
'a: while false {}
macro_rules! m { ($e:expr) => {}; } fn main() { // okay let _ = 'a: while false {}; // no rules expected the token `'a` m!('a: while false {}); }
cc @kennytm