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