blob: 22093baf5c545c16dc832ce6f3f31b67179a0bc0 [file] [log] [blame]
// RUN: %clang -x c-header %s -Weverything -o %t.h.pch
// RUN: %clang -x c %s -w -include %t.h -fsyntax-only -Xclang -verify
#ifndef HEADER
#define HEADER
extern int foo;
#else
void f(void) {
int a = foo;
// Make sure we parsed this by getting an error.
int b = bar; // expected-error {{undeclared}}
}
#endif