]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/keyword-final.stderr
Rollup merge of #63846 - DevQps:32626-document-time-system-calls, r=rkruppe
[rust.git] / src / test / ui / parser / keyword-final.stderr
1 error: expected identifier, found reserved keyword `final`
2   --> $DIR/keyword-final.rs:2:9
3    |
4 LL |     let final = ();
5    |         ^^^^^ expected identifier, found reserved keyword
6 help: you can escape reserved keywords to use them as identifiers
7    |
8 LL |     let r#final = ();
9    |         ^^^^^^^
10
11 error: aborting due to previous error
12