Rellum Rellum

S0080: effect wrapper body is empty

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

Explanation

An effect wrapper must expand to at least one concrete effect call. Empty wrappers would look effectful at the call site while producing no Fire-phase work, which makes resource analysis and program intent unclear.

Common causes

Canonical fixes

Before:

effect log!(msg: String) = msg

After:

effect log!(msg: String) = print!(msg)

Code example

effect log!(msg: String) = msg