rust/tests/ui/parser/do-catch-suggests-try.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
667 B
Plaintext
Raw Normal View History

2018-10-20 20:36:17 +00:00
error: found removed `do catch` syntax
2019-12-03 12:35:05 +00:00
--> $DIR/do-catch-suggests-try.rs:4:25
2018-10-20 20:36:17 +00:00
|
LL | let _: Option<()> = do catch {};
2019-12-03 12:35:05 +00:00
| ^^^^^^^^ help: replace with the new syntax: `try`
2018-10-20 20:36:17 +00:00
|
2019-12-03 12:35:05 +00:00
= note: following RFC #2388, the new non-placeholder syntax is `try`
2018-10-20 20:36:17 +00:00
2019-12-03 12:35:05 +00:00
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
2018-10-20 20:36:17 +00:00
2019-12-03 12:35:05 +00:00
For more information about this error, try `rustc --explain E0308`.