]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test11371.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test11371.d
1
2 version(D_SIMD)
3 {
4 __vector(long[2]) f()
5 {
6 __vector(long[2]) q;
7 return q;
8 }
9
10 enum __vector(long[2]) v = f();
11 }