about summary refs log tree commit diff
path: root/src/test/ui/parser/char
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-05 09:13:28 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-11 09:32:08 +0000
commitcf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch)
tree40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/ui/parser/char
parentca855e6e42787ecd062d81d53336fe6788ef51a9 (diff)
downloadrust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz
rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip
Move /src/test to /tests
Diffstat (limited to 'src/test/ui/parser/char')
-rw-r--r--src/test/ui/parser/char/whitespace-character-literal.rs10
-rw-r--r--src/test/ui/parser/char/whitespace-character-literal.stderr16
2 files changed, 0 insertions, 26 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 de5e09204b4..00000000000
--- 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
-}
diff --git a/src/test/ui/parser/char/whitespace-character-literal.stderr b/src/test/ui/parser/char/whitespace-character-literal.stderr
deleted file mode 100644
index d73de41a809..00000000000
--- a/src/test/ui/parser/char/whitespace-character-literal.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error: character literal may only contain one codepoint
-  --> $DIR/whitespace-character-literal.rs:5:30
-   |
-LL |     let _hair_space_around = ' x​';
-   |                              ^--^
-   |                               |
-   |                               help: consider removing the non-printing characters: `x`
-   |
-note: there are non-printing characters, the full sequence is `\u{200a}x\u{200b}`
-  --> $DIR/whitespace-character-literal.rs:5:31
-   |
-LL |     let _hair_space_around = ' x​';
-   |                               ^^
-
-error: aborting due to previous error
-