-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reject raw lifetime followed by \' as well
- Loading branch information
1 parent
3f1be1e
commit 1990f15
Showing
3 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//@ edition: 2021 | ||
|
||
// Make sure we reject the case where a raw lifetime is immediately followed by another | ||
// lifetime. This reserves a modest amount of space for changing lexing to, for example, | ||
// delay rejection of overlong char literals like `'r#long'id`. | ||
|
||
macro_rules! w { | ||
($($tt:tt)*) => {} | ||
} | ||
|
||
w!('r#long'id); | ||
//~^ ERROR character literal may only contain one codepoint | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
error: character literal may only contain one codepoint | ||
--> $DIR/immediately-followed-by-lt.rs:11:4 | ||
| | ||
LL | w!('r#long'id); | ||
| ^^^^^^^^ | ||
| | ||
help: if you meant to write a string literal, use double quotes | ||
| | ||
LL | w!("r#long"id); | ||
| ~ ~ | ||
|
||
error: aborting due to 1 previous error | ||
|