Files
hakorune/apps/smokes/jit_aot_string_length_smoke.hako

11 lines
174 B
Plaintext

// JIT AOT smoke: StringBox.length() should be 3
static box Main {
main() {
local s
s = new StringBox("abc")
print("Result: " + s.length())
return 0
}
}