http://d.puremagic.com/issues/show_bug.cgi?id=1075
------- Comment #3 from davidl at 126.com 2007-03-22 00:43 -------
class test
{
static const char[] c(){return "whateever;";}
int a;
class b
{
mixin(c());
}
}
void main()
{
}
even above ain't compilabe
--