1 // RUN: %clang_cc1 -std=c11 %s -verify
12 typedef int vla
[N
]; // expected-note{{previous definition is here}}
13 typedef int vla
[N
]; // expected-error{{redefinition of typedef for variably-modified type 'int[N]'}}
16 typedef vla2 vla3
; // expected-note{{previous definition is here}}
17 typedef vla2 vla3
; // expected-error{{redefinition of typedef for variably-modified type 'vla2' (aka 'int[N]')}}