2011-10-11 07:44:35 +08:00
|
|
|
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
|
2012-03-28 07:34:16 +08:00
|
|
|
// CHECK-CC1: FieldDecl:{ResultType C<Foo, class Bar>}{TypedText c} (35) (parent: ClassDecl 'Foo')
|
|
|
|
// CHECK-CC1: ClassDecl:{TypedText Foo} (35) (parent: ClassDecl 'Foo')
|
|
|
|
// CHECK-CC1: CXXMethod:{ResultType Foo &}{TypedText operator=}{LeftParen (}{Placeholder const Foo &}{RightParen )} (35) (parent: ClassDecl 'Foo')
|
|
|
|
// CHECK-CC1: CXXDestructor:{ResultType void}{TypedText ~Foo}{LeftParen (}{RightParen )} (35) (parent: ClassDecl 'Foo')
|