Comment #0 by michel.fortin — 2009-12-15T18:51:09Z
The program below crashes with DMD 2.037 under Mac OS X 10.6 with a null dereference when the thread finishes.
import core.thread;
void threadFunc() { }
void main() {
auto thread = new Thread(&threadFunc);
thread.start();
thread.join();
}