summaryrefslogtreecommitdiffstats
path: root/test/Index/complete-qualified.cpp
blob: 38a678af242209752fb15ea1432582ba3825f2c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
template <typename X, typename Y>
class C
{
};

class Foo
{
public:
  C<Foo, class Bar> c;
};

void foo()
{
  Foo::

// RUN: c-index-test -code-completion-at=%s:14:8 %s -o - | FileCheck -check-prefix=CC1 %s
// CHECK-CC1: FieldDecl:{ResultType C<Foo, class Bar>}{TypedText c} (35)
// CHECK-CC1: ClassDecl:{TypedText Foo} (35)
// CHECK-CC1: CXXMethod:{ResultType Foo &}{TypedText operator=}{LeftParen (}{Placeholder const Foo &}{RightParen )}
// CHECK-CC1: CXXDestructor:{ResultType void}{TypedText ~Foo}{LeftParen (}{RightParen )} (35)
OpenPOWER on IntegriCloud