https://issues.dlang.org/show_bug.cgi?id=19501
Issue ID: 19501
Summary: stack trace is missing when throwed in module
constructors
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P1
Component: druntime
Assignee: [email protected]
Reporter: [email protected]
shared static this()
{
foo();
}
void foo()
{
throw new Exception("dfsd");
}
void main()
{
}
--
