blob: 1ef17b9c675004b0e7abf5ce67710f19fbce03a1 [file] [log] [blame]
Argyrios Kyrtzidis3ad86fd2013-02-05 16:36:52 +00001// RUN: %clang_cc1 -emit-pch -o %t1.pch %s
2// RUN: %clang_cc1 -emit-pch -o %t2.pch %s
3// RUN: %clang_cc1 %s -include-pch %t1.pch -include-pch %t2.pch -verify
4
5#ifndef HEADER
6#define HEADER
7
8extern int x;
9
10#else
11
12#warning parsed this
13// expected-warning@-1 {{parsed this}}
14int foo() {
15 return x;
16}
17
18#endif