]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test21876.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test21876.d
CommitLineData
5fee5ec3
IB
1// https://issues.dlang.org/show_bug.cgi?id=21876
2
3auto test1()
4{
5 int[0] a;
6 return a;
7}
8
9auto test2()
10{
11 static int[0] a;
12 return a;
13}
14
15enum x = test1();
16enum y = test2();
17static assert(x == y && y == []);