summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/do-catch-suggests-try.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/do-catch-suggests-try.stderr')
-rw-r--r--src/test/ui/parser/do-catch-suggests-try.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/parser/do-catch-suggests-try.stderr b/src/test/ui/parser/do-catch-suggests-try.stderr
deleted file mode 100644
index cd8907b7e..000000000
--- a/src/test/ui/parser/do-catch-suggests-try.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-error: found removed `do catch` syntax
- --> $DIR/do-catch-suggests-try.rs:4:25
- |
-LL | let _: Option<()> = do catch {};
- | ^^^^^^^^ help: replace with the new syntax: `try`
- |
- = note: following RFC #2388, the new non-placeholder syntax is `try`
-
-error[E0308]: mismatched types
- --> $DIR/do-catch-suggests-try.rs:9:33
- |
-LL | let _recovery_witness: () = 1;
- | -- ^ expected `()`, found integer
- | |
- | expected due to this
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0308`.