blob: 233090c04992610900e2eb9608fd9a5a4461cff3 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm-only -g -S %s -o - | grep "TC<int>"
template<typename T>
class TC {
public:
TC(const TC &) {}
TC() {}
};
TC<int> tci;