core.exception.InvalidMemoryOperationError@src\core\exception.d(647): Invalid memory operation
import std.stdio; int main() { auto a = new A; return 0; } class A { this() { } ~this() { f(); } } void f() { auto str = new string[100]; }
core.exception.InvalidMemoryOperationError@src\core\exception.d(647): Invalid memory operation
import std.stdio; int main() { auto a = new A; return 0; } class A { this() { } ~this() { f(); } } void f() { auto str = new string[100]; }