Files
hakorune/apps/tests/emit_boxcall_length_canary_vm.hako

9 lines
213 B
Plaintext
Raw Normal View History

// 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()
}
}