/* { dg-do compile } *//* { dg-options "-w" } */#define vector __attribute__((vector_size(16) ))/* Check that vector[index] works and index[vector] is rejected. */floatvf(vectorfloata){return0[a];/* { dg-error "subscripted value is neither array nor pointer nor vector" } */}floatfv(vectorfloata){returna[0];}