Rellum Rellum

E1005: expected field name after dot

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

Explanation

After a dot, Rellum expects either a record field identifier or an integer tuple field index. Other tokens cannot form field access.

Common causes

Canonical fixes

Before:

value = point.

After:

value = point.x

Before:

value = items.0

After:

value = items[0]

Code example

value = point.