summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/char/whitespace-character-literal.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/char/whitespace-character-literal.rs')
-rw-r--r--src/test/ui/parser/char/whitespace-character-literal.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/parser/char/whitespace-character-literal.rs b/src/test/ui/parser/char/whitespace-character-literal.rs
deleted file mode 100644
index de5e09204..000000000
--- a/src/test/ui/parser/char/whitespace-character-literal.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// This tests that the error generated when a character literal has multiple
-// characters in it contains a note about non-printing characters.
-
-fn main() {
- let _hair_space_around = ' x​';
- //~^ ERROR: character literal may only contain one codepoint
- //~| NOTE: there are non-printing characters, the full sequence is `\u{200a}x\u{200b}`
- //~| HELP: consider removing the non-printing characters
- //~| SUGGESTION: x
-}