-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lexer): not skipped whitespace warning for '\x0c'
- Loading branch information
Showing
4 changed files
with
40 additions
and
10 deletions.
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
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 |
---|---|---|
@@ -1,11 +1,31 @@ | ||
// check-pass | ||
// ignore-tidy-tab | ||
|
||
fn main() { | ||
let s = "\ | ||
"; | ||
//~^^^ WARNING multiple lines skipped by escaped newline | ||
assert_eq!(s, ""); | ||
|
||
let s = "foo\ | ||
bar | ||
"; | ||
//~^^^ WARNING non-ASCII whitespace symbol '\u{a0}' is not skipped | ||
//~^^^ WARNING whitespace symbol '\u{a0}' is not skipped | ||
assert_eq!(s, "foo bar\n "); | ||
|
||
let s = "a\ | ||
b"; | ||
assert_eq!(s, "ab"); | ||
|
||
let s = "a\ | ||
b"; | ||
assert_eq!(s, "ab"); | ||
|
||
let s = "a\ | ||
b"; | ||
//~^^ WARNING whitespace symbol '\u{c}' is not skipped | ||
// '\x0c' is ASCII whitespace, but it may not need skipped | ||
// discussion: https://github.com/rust-lang/rust/pull/108403 | ||
assert_eq!(s, "a\x0cb"); | ||
} |
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 |
---|---|---|
@@ -1,21 +1,31 @@ | ||
warning: multiple lines skipped by escaped newline | ||
--> $DIR/str-escape.rs:3:14 | ||
--> $DIR/str-escape.rs:5:14 | ||
| | ||
LL | let s = "\ | ||
| ______________^ | ||
LL | | | ||
LL | | "; | ||
| |_____________^ skipping everything up to and including this point | ||
|
||
warning: non-ASCII whitespace symbol '\u{a0}' is not skipped | ||
--> $DIR/str-escape.rs:7:17 | ||
warning: whitespace symbol '\u{a0}' is not skipped | ||
--> $DIR/str-escape.rs:11:17 | ||
| | ||
LL | let s = "foo\ | ||
| _________________^ | ||
LL | | bar | ||
| | ^ non-ASCII whitespace symbol '\u{a0}' is not skipped | ||
| | ^ whitespace symbol '\u{a0}' is not skipped | ||
| |___| | ||
| | ||
|
||
warning: 2 warnings emitted | ||
warning: whitespace symbol '\u{c}' is not skipped | ||
--> $DIR/str-escape.rs:25:15 | ||
| | ||
LL | let s = "a\ | ||
| _______________^ | ||
LL | | b"; | ||
| | ^- whitespace symbol '\u{c}' is not skipped | ||
| |____| | ||
| | ||
|
||
warning: 3 warnings emitted | ||
|