Rellum Rellum

E0009: invalid integer literal

Generated from rellum-diagnostics/src/db.rs.

Explanation

Integer literals must fit the accepted decimal, binary, or hexadecimal syntax and range. If the lexer cannot parse the cleaned literal, it cannot produce a numeric token.

Common causes

Canonical fixes

Before:

value = 0xzz

After:

value = 0xff

Code example

value = 0xzz