Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Index / complete-enums.c
blob5e712a11227f14e9342334ca706637ea2e0d1642
1 // Note: the run lines follow their respective tests, since line/column
2 // matter in this test.
4 enum {
5 Red = 17,
6 Green,
7 Blue
8 };
10 void f() {
14 // RUN: c-index-test -code-completion-at=%s:11:1 %s | FileCheck -check-prefix=CHECK-CC1 %s
15 // CHECK-CC1: EnumConstantDecl:{ResultType enum <anonymous>}{TypedText Red}