rust/tests/ui/parser/issues/issue-81806.stderr

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

18 lines
373 B
Plaintext
Raw Normal View History

error: expected identifier, found keyword `impl`
--> $DIR/issue-81806.rs:2:1
|
LL | trait T { const
| - while parsing this item list starting here
LL | impl
| ^^^^ expected identifier, found keyword
LL | }
| - the item list ends here
|
help: escape `impl` to use it as an identifier
|
LL | r#impl
| ++
error: aborting due to previous error