(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
test16116.d
/*
REQUIRED_ARGS: -m64
TEST_OUTPUT:
---
fail_compilation/test16116.d(14): Error: incompatible types for `(v) * (i)`: `__vector(short[8])` and `int`
---
*/

// https://issues.dlang.org/show_bug.cgi?id=16116

void foo() {
    __vector(short[8]) v;
    int i;
    v = v * i;
}