dmd/compiler/test/compilable/test19631.d
2022-07-09 18:53:07 +02:00

11 lines
150 B
D

struct Field(int _w, int _h)
{
bool[_h][_w] s;
}
struct Life(int w, int h)
{
auto a = new Field!(w, h); // ICE
}
alias T = Life!(100, 100);