Files
hakorune/apps/tests/emit_boxcall_length_canary_vm.hako
2025-12-01 11:10:46 +09:00

9 lines
213 B
Plaintext

// Minimal canary for Stage-B emit -> MIR(JSON) testing.
// StringBox.length boxcall should appear in MIR.
static box Main {
method main(args) {
local s = new StringBox("nyash");
return s.length()
}
}