]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/test15913.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / test15913.d
1 void main()//test10282()
2 {
3 //const int[3] a4 = [1, 3, 6] * 3;
4 immutable int[3] a5 = [1, 3, 6] * 3;
5
6 assert(a5[0] == 3 && a5[1] == 9 && a5[2] == 18);
7 }