mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 07:19:03 -04:00
10 lines
153 B
C++
10 lines
153 B
C++
// 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;
|