Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Sema / implicit-cast.c
blob088b1958d9b85c43482a38f3e4852fb340f08c9f
1 // RUN: %clang_cc1 -fsyntax-only %s
3 static char *test1(int cf) {
4 return cf ? "abc" : 0;
6 static char *test2(int cf) {
7 return cf ? 0 : "abc";