1 /*
2 REQUIRED_ARGS: -m64
3 PERMUTE_ARGS:
4 TEST_OUTPUT:
5 ---
6 fail_compilation/test16116.d(15): Error: incompatible types for ((v) * (i)): '__vector(short[8])' and 'int'
7 ---
8 */
9 
10 // https://issues.dlang.org/show_bug.cgi?id=16116
11 
foo()12 void foo() {
13     __vector(short[8]) v;
14     int i;
15     v = v * i;
16 }
17