summaryrefslogtreecommitdiff
path: root/tests/ui/str/str-escape.rs
diff options
context:
space:
mode:
authorbohan <bohan-zhang@foxmail.com>2023-03-09 22:42:06 +0800
committerbohan <bohan-zhang@foxmail.com>2023-03-09 22:44:58 +0800
commitd223c26bced5e3d861daa987820b30091198159e (patch)
tree7a2c7ca282181271a84c4b93eb283467edba62b5 /tests/ui/str/str-escape.rs
parent9b60e6c68ff0aabad9a0edd71898466886dbf6bb (diff)
fix(lexer): not skipped whitespace warning for '\x0c'
Diffstat (limited to 'tests/ui/str/str-escape.rs')
-rw-r--r--tests/ui/str/str-escape.rs22
1 files changed, 21 insertions, 1 deletions
diff --git a/tests/ui/str/str-escape.rs b/tests/ui/str/str-escape.rs
index 0264632fd24..10a72421f24 100644
--- a/tests/ui/str/str-escape.rs
+++ b/tests/ui/str/str-escape.rs
@@ -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");
}