]> git.proxmox.com Git - rustc.git/blob - src/test/ui/try-block/try-block-in-edition2015.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / try-block / try-block-in-edition2015.stderr
1 error: expected identifier, found keyword `let`
2 --> $DIR/try-block-in-edition2015.rs:6:9
3 |
4 LL | let try_result: Option<_> = try {
5 | --- while parsing this struct
6 LL |
7 LL | let x = 5;
8 | ^^^ expected identifier, found keyword
9
10 error[E0574]: expected struct, variant or union type, found macro `try`
11 --> $DIR/try-block-in-edition2015.rs:4:33
12 |
13 LL | let try_result: Option<_> = try {
14 | ^^^
15 |
16 = note: if you want the `try` keyword, you need to be in the 2018 edition
17 help: use `!` to invoke the macro
18 |
19 LL | let try_result: Option<_> = try! {
20 | ^
21
22 error: aborting due to 2 previous errors
23
24 For more information about this error, try `rustc --explain E0574`.