S0046: unknown record type during field access
Generated from rellum-diagnostics/src/db.rs.
Explanation
The analyzer found a named value during .field access but could not find the corresponding record definition. This usually follows an earlier unresolved type problem and means the field layout is unavailable.
Common causes
- an earlier type-reference error left an unknown named type
- field access was checked after a failed or missing type definition
- a compiler path continued after type resolution failed
Canonical fixes
- fix any earlier unknown-type diagnostics first
- ensure the record type is declared or imported before the value is used