1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// 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;