(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test17793.d
// REQUIRED_ARGS: -mcpu=avx2
import core.simd;

static if (__traits(compiles, double4))
{
    double4 foo();
    void test(double[4]);

    void main()
    {
        test(foo().array);
    }
}