mirror of
https://github.com/opnsense/src.git
synced 2026-05-20 08:56:47 -04:00
22 lines
312 B
C++
22 lines
312 B
C++
// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
|
|
|
|
//CHECK: TC<int>
|
|
//CHECK: DW_TAG_template_type_parameter
|
|
|
|
template<typename T>
|
|
class TC {
|
|
public:
|
|
TC(const TC &) {}
|
|
TC() {}
|
|
};
|
|
|
|
TC<int> tci;
|
|
|
|
//CHECK: TU<2>
|
|
//CHECK: DW_TAG_template_value_parameter
|
|
template<unsigned >
|
|
class TU {
|
|
int b;
|
|
};
|
|
|
|
TU<2> u2;
|