-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
A-parserArea: The lexing & parsing of Rust source code to an ASTArea: The lexing & parsing of Rust source code to an ASTC-bugCategory: This is a bug.Category: This is a bug.P-mediumMedium priorityMedium priorityregression-untriagedUntriaged performance or correctness regression.Untriaged performance or correctness regression.
Description
rustc 1.82 accepts forms like 'r#x'y
in the 2015 edition, but rustc 1.83 (beta) rejects them.
As I understand it, #126452 wasn't intended to have any effect on the 2015 edition.
macro_rules! lexes {($($_:tt)*) => {}}
fn main() {
lexes!('r#x'y);
}
I think this is fallout from the beta-backport of #132341.
Metadata
Metadata
Assignees
Labels
A-parserArea: The lexing & parsing of Rust source code to an ASTArea: The lexing & parsing of Rust source code to an ASTC-bugCategory: This is a bug.Category: This is a bug.P-mediumMedium priorityMedium priorityregression-untriagedUntriaged performance or correctness regression.Untriaged performance or correctness regression.