hanchenye-llvm-project/clang/test/CodeGenCXX/constructor-template.cpp

42 lines
827 B
C++
Raw Normal View History

// RUN: clang-cc -triple x86_64-apple-darwin -std=c++0x -S %s -o %t-64.s &&
// RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s &&
// RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s &&
// RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s &&
// RUN: true
// PR4826
struct A {
A() {
}
};
template<typename T>
struct B {
B(T) {}
A nodes;
};
// PR4853
template <typename T> class List {
public:
List(){ } // List<BinomialNode<int>*>::List() remains undefined.
};
template<typename T> class BinomialNode {
public:
BinomialNode(T value) {}
List<BinomialNode<T>*> nodes;
};
int main() {
B<int> *n = new B<int>(4);
BinomialNode<int> *node = new BinomialNode<int>(1);
}
// CHECK-LP64: __ZN4ListIP12BinomialNodeIiEEC1Ev:
// CHECK-LP32:__ZN4ListIP12BinomialNodeIiEEC1Ev: