9 lines
213 B
Plaintext
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()
|
|
}
|
|
}
|