https://issues.dlang.org/show_bug.cgi?id=23754
--- Comment #2 from Walter Bright ---
The problem is illustrated with:
---
void test()
{
enum s = foo();
}
int foo()
{
new C();
return 1;
}
class C { }
---
While executing foo() at compile time works, even with -betterC, the compiler
https://issues.dlang.org/show_bug.cgi?id=23754
Walter Bright changed:
What|Removed |Added
Component|phobos |dmd
--- Comment #1 from Walter Bright ---
O
https://issues.dlang.org/show_bug.cgi?id=23754
Walter Bright changed:
What|Removed |Added
Keywords||betterC
See Also|