✓
Passing This code compiles and runs correctly.
Code
// The default door inside an imported module. `std/proto(Scout)` here
// rewrites to `std.proto:default` exactly as it does in the entry file —
// each scope resolves against its own imports.
import app/lib
import std/io
std/io:print.ln("door")
Supporting Files
// A compound declared through the default door from inside a library
// module. Same spelling as the entry-file door (660_030); the pipeline
// rewrites it regardless of which module spells it.
import std/proto
std/proto:f64(Health)
std/proto(Scout) {
health: Health
}
Actual
door
Expected output
door
Flows
flow ~print.ln click a branch to expand · @labels scroll to their anchor
print.ln (expr: "door")
Test Configuration
MUST_RUN