Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / CodeCompletion / tag.c
blob6ad29880666e5baa87452cf122f345cad797c7d8
1 enum X { x };
2 enum Y { y };
3 struct Z { };
5 void X();
7 void test() {
8 enum X { x };
9 enum
10 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:9:7 %s -o - | FileCheck -check-prefix=CC1 %s
11 // CHECK-CC1: X
12 // CHECK-CC1: Y