]> git.proxmox.com Git - rustc.git/blame - src/test/ui/try-block/try-block-in-edition2015.stderr
New upstream version 1.56.0~beta.4+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 {
3dfed10e 14 | ^^^ not a struct, variant or union type
9fa01778 15 |
5869c6ff 16 = note: if you want the `try` keyword, you need Rust 2018 or later
ba9703b0
XL
17help: use `!` to invoke the macro
18 |
19LL | let try_result: Option<_> = try! {
94222f64 20 | +
b7449926
XL
21
22error: aborting due to 2 previous errors
23
e74abb32 24For more information about this error, try `rustc --explain E0574`.