debug-info-template.cpp revision fa275dfad7c4eb053ffef423a863afbe15534476
1// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
2
3//CHECK: TC<int>
4//CHECK: DW_TAG_template_type_parameter
5
6template<typename T>
7class TC {
8public:
9  TC(const TC &) {}
10  TC() {}
11};
12
13TC<int> tci;
14