|
The string test shows a result as expected only when I delete the code for allocating 0 byte of memory.
let s = String.new(0);
do s.dispose();
Like when I delete this, It works fine. But It shows ERR2 if I try to allocate 0 byte of memory.
How can I handle that?
|