Comment #0 by bus_dbugzilla — 2012-03-07T15:08:39Z
-------------------------------------------
string bar(int[] vars...)
{
return "";
}
class C
{
this()
{
mixin(bar());
}
}
bool foo()
{
auto x = new C();
return true;
}
enum x = foo;
-------------------------------------------
>dmd test.d
Assertion failure: 'ctfeStack.stackPointer() == 0' on line 4823 in file 'interpret.c'
Comment #1 by github-bugzilla — 2012-03-09T21:40:55Z