blob: d407aa315b97483b44cc591693a51981fe7a9c62 [file] [log] [blame]
/*
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;
}