Rellum Rellum

S0063: name is not exported by module

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

Explanation

An import may only name public items from the target module interface. Private helpers stay inside their module so other modules cannot depend on implementation details that may change.

Common causes

Canonical fixes

Before:

helper(x: Int) : Int = x

After:

pub helper(x: Int) : Int = x

Code example

helper(x: Int) : Int = x