f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
20 lines
541 B
C++
20 lines
541 B
C++
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=CHECK-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)
|