Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Parser / compound_literal.c
blob4f3609dc29f4ebdfc7bd81774fbb6ec8ed9030ff
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 int main() {
3 char *s;
4 s = (char []){"whatever"};