https://issues.dlang.org/show_bug.cgi?id=19956
--- Comment #4 from anonymous4 <[email protected]> --- Recommended lock pattern in .net: import core.thread; import core.time; class BadThread : Thread { Object locker; this() { locker=new Object; super(&run); } void run() { synchronized (locker) { Thread.sleep(1.seconds); (new Thread({})).start; } } } --
