mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
343 B
Plaintext
14 lines
343 B
Plaintext
error: expected identifier, found reserved keyword `abstract`
|
|
--> $DIR/keyword-abstract.rs:2:9
|
|
|
|
|
LL | let abstract = ();
|
|
| ^^^^^^^^ expected identifier, found reserved keyword
|
|
|
|
|
help: escape `abstract` to use it as an identifier
|
|
|
|
|
LL | let r#abstract = ();
|
|
| ++
|
|
|
|
error: aborting due to previous error
|
|
|