mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
9 lines
153 B
C++
9 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;
|