11 lines
174 B
Plaintext
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
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|