summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/label-is-actually-char.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/label-is-actually-char.stderr')
-rw-r--r--src/test/ui/parser/label-is-actually-char.stderr46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/test/ui/parser/label-is-actually-char.stderr b/src/test/ui/parser/label-is-actually-char.stderr
deleted file mode 100644
index 28c8d2ada..000000000
--- a/src/test/ui/parser/label-is-actually-char.stderr
+++ /dev/null
@@ -1,46 +0,0 @@
-error: expected `while`, `for`, `loop` or `{` after a label
- --> $DIR/label-is-actually-char.rs:2:15
- |
-LL | let c = 'a;
- | ^ expected `while`, `for`, `loop` or `{` after a label
- |
-help: add `'` to close the char literal
- |
-LL | let c = 'a';
- | +
-
-error: unexpected token: `'b`
- --> $DIR/label-is-actually-char.rs:6:15
- |
-LL | 'a'..='b => {}
- | ^^
- |
-help: add `'` to close the char literal
- |
-LL | 'a'..='b' => {}
- | +
-
-error: expected `while`, `for`, `loop` or `{` after a label
- --> $DIR/label-is-actually-char.rs:11:16
- |
-LL | let x = ['a, 'b];
- | ^ expected `while`, `for`, `loop` or `{` after a label
- |
-help: add `'` to close the char literal
- |
-LL | let x = ['a', 'b];
- | +
-
-error: expected `while`, `for`, `loop` or `{` after a label
- --> $DIR/label-is-actually-char.rs:11:20
- |
-LL | let x = ['a, 'b];
- | ^ expected `while`, `for`, `loop` or `{` after a label
- |
-help: add `'` to close the char literal
- |
-LL | let x = ['a, 'b'];
- | +
-
-error: aborting due to 4 previous errors
-