Rellum Rellum

S0062: module not found

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

Explanation

Imports are resolved against the module interfaces produced from files in the project source tree. If the requested module path has no matching source file and interface, the importing module cannot know which names or types are available.

Common causes

Canonical fixes

Before:

import geometry { Point }

After:

src/geometry.rlm

Before:

import util.math { add }

After:

import utils.math { add }

Code example

import geometry { Point }