14 lines · cpp
1// Test with pch.2// RUN: %clang_cc1 -emit-pch -frecovery-ast -fallow-pch-with-compiler-errors -o %t %s3// RUN: %clang_cc1 -include-pch %t -fno-validate-pch -emit-llvm -o - %s4 5#ifndef HEADER6#define HEADER7 8int func(int);9int s = func();10 11#else12 13#endif14