summaryrefslogtreecommitdiffstats
path: root/test/Index/complete-templates.cpp
blob: 2f2302d08d8261e1e27c9881bffe081640b38447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Tests are line- and column-sensive, so run lines are below.

template<typename T>
class X {
  X();
  X(const X&);
  
  template<typename U> X(U);
};

template<typename T> void f(T);

void test() {
  
}

// RUN: c-index-test -code-completion-at=%s:14:2 %s | FileCheck %s
// CHECK: FunctionTemplate:{ResultType void}{TypedText f}{LeftParen (}{Placeholder T}{RightParen )} (45)
// CHECK: ClassTemplate:{TypedText X}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)