2012-09-02 03:08:08 +08:00
|
|
|
using MyTypeAlias = int;
|
|
|
|
|
2013-02-22 12:11:06 +08:00
|
|
|
extern "C" {
|
|
|
|
template < typename T > *Allocate() { }
|
|
|
|
}
|
|
|
|
|
2013-06-06 01:52:24 +08:00
|
|
|
// rdar://14063074
|
|
|
|
namespace rdar14063074 {
|
|
|
|
template <typename T>
|
|
|
|
struct TS {};
|
|
|
|
struct TS<int> {};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void tfoo() {}
|
|
|
|
void tfoo<int>() {}
|
|
|
|
}
|
|
|
|
|
2012-09-02 03:08:08 +08:00
|
|
|
// RUN: c-index-test -index-file %s > %t
|
|
|
|
// RUN: FileCheck %s -input-file=%t
|
|
|
|
|
|
|
|
// CHECK: [indexDeclaration]: kind: type-alias | name: MyTypeAlias | {{.*}} | loc: 1:7
|
2013-06-06 01:52:24 +08:00
|
|
|
// CHECK: [indexDeclaration]: kind: struct-template-spec | name: TS | {{.*}} | loc: 11:8
|
|
|
|
// CHECK: [indexDeclaration]: kind: function-template-spec | name: tfoo | {{.*}} | loc: 15:6
|