d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / b23620.d
blob1eb1dcde542682caa37bffa01e2de1c406a07b6e
1 // https://issues.dlang.org/show_bug.cgi?id=23620
2 struct Index
4 uint value;
5 alias value this;
8 enum i = Index();
9 int[i] a;
10 static assert(a.length == 0);