Rellum Rellum

S0052: unknown field in pattern

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

Explanation

Record and enum variant patterns may bind only fields declared on the matched type or variant. The compiler checks field names statically so destructuring cannot read a payload slot that does not exist.

Common causes

Canonical fixes

Before:

Point { width }

After:

Point { x }

Code example

Point { width }