✓
Passing This code compiles and runs correctly.
Code
// Slash namespace resolves a REGULAR qualified event (not just keyword
// transforms like print.ln). `std/io:print` must resolve to the same event as
// `std/io:print` — the qualifier `/` is normalized to the internal `.` form
// (parseQualifiedPath + canonicalize). Member access after `:` keeps `.`.
~import std/io
const msg: []const u8 = "slash ok";
~std/io:print(msg)
Actual
slash okExpected output
slash okTest Configuration
MUST_RUN