Files
clang-p2996/clang/test/Index/complete-cached-globals.cpp
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
This removes links to rdar, which is an internal bug tracker that the
community doesn't have visibility into.

See further discussion at:
https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
2023-07-07 08:41:11 -04:00

24 lines
800 B
C++

// Note: the run lines follow their respective tests, since line/column
// matter in this test.
namespace SomeNamespace {
class SomeClass {
};
void SomeFunction();
}
using SomeNamespace::SomeClass;
using SomeNamespace::SomeFunction;
static void foo() {
return;
}
// RUN: c-index-test -code-completion-at=%s:14:3 %s | FileCheck -check-prefix=CHECK-CC1 %s
// 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
// CHECK-CC1: ClassDecl:{TypedText SomeClass} (50)
// CHECK-CC1: FunctionDecl:{ResultType void}{TypedText SomeFunction}{LeftParen (}{RightParen )} (50)
// CHECK-CC1-NOT: {Text SomeNamespace::}{TypedText SomeClass}
// CHECK-CC1-NOT: {Text SomeNamespace::}{TypedText SomeFunction}