bolt/deps/llvm-18.1.8/clang/test/Sema/err-decl-block-extern-no-init.c

16 lines
382 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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}}
}