Teach TreeTransform how to transform a pack expansion type into
[clang.git] / test / CodeGenCXX / debug-info-template.cpp
blob233090c04992610900e2eb9608fd9a5a4461cff3
1 // RUN: %clang_cc1 -emit-llvm-only -g -S %s -o - | grep "TC<int>"
2 template<typename T>
3 class TC {
4 public:
5 TC(const TC &) {}
6 TC() {}
7 };
9 TC<int> tci;