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(); }
Fixed dmd 2.041