rust/tests/ui/parser/bad-let-as-field.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
344 B
Plaintext
Raw Normal View History

2022-10-11 17:01:22 +00:00
error: expected identifier, found keyword `let`
--> $DIR/bad-let-as-field.rs:2:5
|
LL | struct Foo {
| --- while parsing this struct
LL | let: i32,
| ^^^ expected identifier, found keyword
|
help: escape `let` to use it as an identifier
|
LL | r#let: i32,
| ++
error: aborting due to previous error