11 lines
164 B
Plaintext
11 lines
164 B
Plaintext
|
|
// JIT AOT smoke: Any.isEmpty() on StringBox
|
||
|
|
static box Main {
|
||
|
|
main() {
|
||
|
|
local s
|
||
|
|
s = new StringBox("")
|
||
|
|
if s.isEmpty() { return 1 }
|
||
|
|
return 0
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|