]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/try-block/try-block-in-edition2015.stderr
Auto merge of #57714 - matthewjasper:wellformed-unreachable, r=pnkfelix
[rust.git] / src / test / ui / try-block / try-block-in-edition2015.stderr
index 7e6d515e111d060cf3bb967869f4ef2057933270..a7b81060d3dc6a3e1b4746f56bf7396f846f2718 100644 (file)
@@ -1,17 +1,21 @@
 error: expected identifier, found keyword `let`
-  --> $DIR/try-block-in-edition2015.rs:16:9
+  --> $DIR/try-block-in-edition2015.rs:6:9
    |
 LL |     let try_result: Option<_> = try {
    |                                 --- while parsing this struct
 LL |     //~^ ERROR expected struct, variant or union type, found macro `try`
 LL |         let x = 5; //~ ERROR expected identifier, found keyword
    |         ^^^ expected identifier, found keyword
+help: you can escape reserved keywords to use them as identifiers
+   |
+LL |         r#let x = 5; //~ ERROR expected identifier, found keyword
+   |         ^^^^^
 
 error[E0574]: expected struct, variant or union type, found macro `try`
-  --> $DIR/try-block-in-edition2015.rs:14:33
+  --> $DIR/try-block-in-edition2015.rs:4:33
    |
 LL |     let try_result: Option<_> = try {
-   |                                 ^^^ did you mean `try!(...)`?
+   |                                 ^^^ help: use `!` to invoke the macro: `try!`
 
 error: aborting due to 2 previous errors