On Thursday, 29 May 2014 at 19:00:24 UTC, Walter Bright wrote:
>
> If it's single threaded, and the single thread is doing the
> collecting, who is starting up a new thread?
class Foo {
~this() {
auto t = new Thread({ auto a = new char[100]; });
t.start();
}
}