[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / different-diagnostic-level.c
blob22093baf5c545c16dc832ce6f3f31b67179a0bc0
1 // RUN: %clang -x c-header %s -Weverything -o %t.h.pch
2 // RUN: %clang -x c %s -w -include %t.h -fsyntax-only -Xclang -verify
4 #ifndef HEADER
5 #define HEADER
7 extern int foo;
9 #else
11 void f(void) {
12 int a = foo;
13 // Make sure we parsed this by getting an error.
14 int b = bar; // expected-error {{undeclared}}
17 #endif