// RUN: %clang_cc1 -fsyntax-only -verify %s
// PR5515
extern int a;
int a;
extern int b;
int b;
extern int c;
int c = ; // expected-error {{excess elements in array initializer}}
int d; // expected-error {{array has incomplete element type 'int[]'}}
extern const int e; // expected-note {{previous declaration is here}}
int e = ; // expected-error {{redefinition of 'e' with a different type: 'int[]' vs 'const int[2]'}}