2021-02-08 01:43:54 -06:00
|
|
|
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
|
|
|
|
|
|
2022-01-27 16:53:39 -06:00
|
|
|
help: escape `impl` to use it as an identifier
|
2021-02-08 01:43:54 -06:00
|
|
|
|
|
|
|
|
LL | r#impl
|
2022-01-27 16:53:39 -06:00
|
|
|
| ++
|
2021-02-08 01:43:54 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|