0baf61bfdb
Make the spacing between the code snippet and verbose structured suggestions consistent with note and help messages.
14 lines
348 B
Plaintext
14 lines
348 B
Plaintext
error: expected identifier, found reserved keyword `final`
|
|
--> $DIR/keyword-final.rs:2:9
|
|
|
|
|
LL | let final = ();
|
|
| ^^^^^ expected identifier, found reserved keyword
|
|
|
|
|
help: you can escape reserved keywords to use them as identifiers
|
|
|
|
|
LL | let r#final = ();
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|