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