2016-02-15 09:32:36 +08:00
|
|
|
// RUN: c-index-test core -print-source-symbols -- %s -target x86_64-apple-macosx10.7 | FileCheck %s
|
|
|
|
|
|
|
|
template <typename TemplArg>
|
|
|
|
class TemplCls {
|
2016-03-26 01:01:59 +08:00
|
|
|
// CHECK: [[@LINE-1]]:7 | class/C++ | TemplCls | c:@ST>1#T@TemplCls | <no-cgname> | Def | rel: 0
|
2016-02-15 09:32:36 +08:00
|
|
|
TemplCls(int x);
|
2016-02-29 15:55:51 +08:00
|
|
|
// CHECK: [[@LINE-1]]:3 | constructor/C++ | TemplCls | c:@ST>1#T@TemplCls@F@TemplCls#I# | <no-cgname> | Decl,RelChild | rel: 1
|
2016-02-15 09:32:36 +08:00
|
|
|
// CHECK-NEXT: RelChild | TemplCls | c:@ST>1#T@TemplCls
|
|
|
|
};
|