xref: /llvm-project/clang/test/Index/complete-cached-globals.cpp (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1 // Note: the run lines follow their respective tests, since line/column
2 // matter in this test.
3 
4 namespace SomeNamespace {
5     class SomeClass {
6     };
7     void SomeFunction();
8 }
9 
10 using SomeNamespace::SomeClass;
11 using SomeNamespace::SomeFunction;
12 
foo()13 static void foo() {
14   return;
15 }
16 
17 // RUN: c-index-test -code-completion-at=%s:14:3 %s | FileCheck -check-prefix=CHECK-CC1 %s
18 // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_CACHING=1 c-index-test -code-completion-at=%s:14:3 %s | FileCheck -check-prefix=CHECK-CC1 %s
19 
20 // CHECK-CC1: ClassDecl:{TypedText SomeClass} (50)
21 // CHECK-CC1: FunctionDecl:{ResultType void}{TypedText SomeFunction}{LeftParen (}{RightParen )} (50)
22 // CHECK-CC1-NOT: {Text SomeNamespace::}{TypedText SomeClass}
23 // CHECK-CC1-NOT: {Text SomeNamespace::}{TypedText SomeFunction}
24