1 /* { dg-do compile } */
2 /* { dg-prune-output "in evaluation of" } */
3 #define vector(elcount, type) \
4 __attribute__((vector_size((elcount)*sizeof(type)))) type
6 int main (int argc
, char *argv
[]) {
7 vector(4,char) vchar
= {1,2,3,4};
8 vector(4, int) vint
= {1,1,1,1};
10 vint
<<= vchar
; /* { dg-error "nvalid operands to binary <<" } */
11 vchar
>>= vint
; /* { dg-error "nvalid operands to binary >>" } */