mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
14 lines
316 B
Text
14 lines
316 B
Text
error: expected identifier, found `1main`
|
|
--> $DIR/integer-literal-start-ident.rs:1:4
|
|
|
|
|
LL | fn 1main() {}
|
|
| ^^^^^ expected identifier
|
|
|
|
|
help: identifiers cannot start with a number
|
|
--> $DIR/integer-literal-start-ident.rs:1:4
|
|
|
|
|
LL | fn 1main() {}
|
|
| ^
|
|
|
|
error: aborting due to previous error
|
|
|