blob: 233090c04992610900e2eb9608fd9a5a4461cff3 [file] [log] [blame]
Devang Patel700a1cb2010-07-20 20:24:18 +00001// RUN: %clang_cc1 -emit-llvm-only -g -S %s -o - | grep "TC<int>"
2template<typename T>
3class TC {
4public:
5 TC(const TC &) {}
6 TC() {}
7};
8
9TC<int> tci;