view tools/clang/test/Index/complete-templates.cpp @ 53:f679cc5126db

include setjmp.h automatically
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Sat, 18 Jan 2014 23:56:19 +0900
parents 95c75e76d11b
children
line wrap: on
line source

// 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)