Dan wrote:
> The following takes nearly three minutes to compile.
... and this returns immediately:
--------------------------------
struct B {
const size_t SIZE = 1024*64;
int[SIZE] x= void; // !!!
}
void main() {
B[] barr;
barr ~= B();
}
-------------------------------
- manfred