You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
472 B
20 lines
472 B
// 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 )} (50)
|
|
// CHECK: ClassTemplate:{TypedText X}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
|