]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test17793.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test17793.d
1 // REQUIRED_ARGS: -mcpu=avx2
2 import core.simd;
3
4 static if (__traits(compiles, double4))
5 {
6 double4 foo();
7 void test(double[4]);
8
9 void main()
10 {
11 test(foo().array);
12 }
13 }