]> git.lizzy.rs Git - rust.git/blob - src/test/ui/try-block/try-block-in-edition2015.stderr
Auto merge of #57006 - GuillaumeGomez:no-crate-filter, r=QuietMisdreavus
[rust.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 |     //~^ ERROR expected struct, variant or union type, found macro `try`
7 LL |         let x = 5; //~ ERROR expected identifier, found keyword
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    |                                 ^^^ did you mean `try!(...)`?
15
16 error: aborting due to 2 previous errors
17
18 For more information about this error, try `rustc --explain E0574`.