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, 19 insertions, 0 deletions
diff --git a/src/test/ui/parser/do-catch-suggests-try.stderr b/src/test/ui/parser/do-catch-suggests-try.stderr
new file mode 100644
index 000000000..cd8907b7e
--- /dev/null
+++ b/src/test/ui/parser/do-catch-suggests-try.stderr
@@ -0,0 +1,19 @@
+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`.