blob: 78a8befd0ca78af734ae70bb1913c22e43973271 [file] [log] [blame]
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fsyntax-only -verify %s
static int x;
void foo(void)
{
extern int x = 1; // expected-error {{declaration of block scope identifier with linkage cannot have an initializer}}
}
int y;
void bar(void)
{
extern int y = 1; // expected-error {{declaration of block scope identifier with linkage cannot have an initializer}}
}