summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/bad-char-literals.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/bad-char-literals.stderr')
-rw-r--r--src/test/ui/parser/bad-char-literals.stderr28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/test/ui/parser/bad-char-literals.stderr b/src/test/ui/parser/bad-char-literals.stderr
new file mode 100644
index 000000000..a22ddbac1
--- /dev/null
+++ b/src/test/ui/parser/bad-char-literals.stderr
@@ -0,0 +1,28 @@
+error: character constant must be escaped: `'`
+ --> $DIR/bad-char-literals.rs:6:6
+ |
+LL | ''';
+ | ^ help: escape the character: `\'`
+
+error: character constant must be escaped: `\n`
+ --> $DIR/bad-char-literals.rs:10:6
+ |
+LL | '
+ | ______^
+LL | | ';
+ | |_ help: escape the character: `\n`
+
+error: character constant must be escaped: `\r`
+ --> $DIR/bad-char-literals.rs:15:6
+ |
+LL | ' ';
+ | ^ help: escape the character: `\r`
+
+error: character constant must be escaped: `\t`
+ --> $DIR/bad-char-literals.rs:18:6
+ |
+LL | ' ';
+ | ^^^^ help: escape the character: `\t`
+
+error: aborting due to 4 previous errors
+