1/* { dg-options "-std=gnu89" } */
2
3typedef int __attribute__((vector_size (8))) vec;
4
5vec a[] = {(vec) {1, 2}, {3, 4}};
6