E1011 Lexer Errors

number-consecutive-underscores

consecutive underscores in number

When this occurs

Numbers like `1__000`

Example error message

error[E1011]: consecutive underscores not allowed in numeric literals

How to fix

Use single underscores as separators in numbers: `1_000_000` not `1__000`.

Related errors