summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/recover-from-homoglyph.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/recover-from-homoglyph.stderr')
-rw-r--r--src/test/ui/parser/recover-from-homoglyph.stderr22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/parser/recover-from-homoglyph.stderr b/src/test/ui/parser/recover-from-homoglyph.stderr
deleted file mode 100644
index f11ca9fd5..000000000
--- a/src/test/ui/parser/recover-from-homoglyph.stderr
+++ /dev/null
@@ -1,22 +0,0 @@
-error: unknown start of token: \u{37e}
- --> $DIR/recover-from-homoglyph.rs:2:17
- |
-LL | println!("");
- | ^
- |
-help: Unicode character ';' (Greek Question Mark) looks like ';' (Semicolon), but it is not
- |
-LL | println!("");
- | ~
-
-error[E0308]: mismatched types
- --> $DIR/recover-from-homoglyph.rs:3:20
- |
-LL | let x: usize = ();
- | ----- ^^ expected `usize`, found `()`
- | |
- | expected due to this
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0308`.