```D void entryPoint(alias func)() { try { func(); } catch (Exception e) { import std.stdio; writeln(e.toString()); } }void main() { auto tid = spawn(&entryPoint!someFunc); // ... } ```
Well... This code shows me: [email protected](6): I'm an exception ---------------- But my main thread still working :(Why so strange default behavior do not kill other threads in case some of threads raise exception?
But thanks anyway.
