1 // Test with pch.
2 // RUN: %clang_cc1 -emit-pch -frecovery-ast -fallow-pch-with-compiler-errors -o %t %s
3 // RUN: %clang_cc1 -include-pch %t -fno-validate-pch -emit-llvm -o - %s
4 
5 #ifndef HEADER
6 #define HEADER
7 
8 int func(int);
9 int s = func();
10 
11 #else
12 
13 #endif
14