summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/debug-info-template.cpp
blob: 233090c04992610900e2eb9608fd9a5a4461cff3 (plain)
1
2
3
4
5
6
7
8
9
// 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;
OpenPOWER on IntegriCloud