S0029: unresolved type escaped analysis
Generated from rellum-diagnostics/src/db.rs.
Explanation
The analyzer reached lowering with an unresolved type that should have been rejected or resolved earlier. In a correct compiler this diagnostic should not be user-actionable; it indicates a compiler bug.
Common causes
- a prior type error left an internal Unknown type in a graph, state, or function context
- a compiler path failed to stop after an unresolved type
- a missing diagnostic allowed invalid typed IR to continue
Canonical fixes
- report this as a compiler bug with the source program that triggered it
- fix any earlier diagnostics first, since they may be the root cause