1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
16 lines
249 B
C++
16 lines
249 B
C++
// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
|
|
|
|
template<typename T>
|
|
struct XF {
|
|
T member;
|
|
};
|
|
|
|
template<typename T>
|
|
T fx(XF<T> xi) {
|
|
return xi.member;
|
|
}
|
|
|
|
//CHECK: XF<int>
|
|
//CHECK: DW_TAG_template_type_parameter
|
|
template int fx(XF<int>);
|