You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
316 B
18 lines
316 B
// 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() {
|
|
int a = foo;
|
|
// Make sure we parsed this by getting an error.
|
|
int b = bar; // expected-error {{undeclared}}
|
|
}
|
|
|
|
#endif
|