// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fsyntax-only -verify %sstatic int x;voidfoo(void){externint x =1;// expected-error {{declaration of block scope identifier with linkage cannot have an initializer}}}int y;voidbar(void){externint y =1;// expected-error {{declaration of block scope identifier with linkage cannot have an initializer}}}