1int __attribute__((vector_size(16))) x;
2typedef int __attribute__((vector_size(16))) int4_t;
3
4// RUN: c-index-test -test-print-typekind %s | FileCheck %s
5// CHECK: VarDecl=x:1:38 typekind=Vector [isPOD=1]
6// CHECK: TypedefDecl=int4_t:2:46 (Definition) typekind=Typedef [canonical=Vector] [isPOD=1]
7