blob: 10577e9766109df936e366d1bfe9fb9063446816 [file] [log] [blame]
Douglas Gregor72f6d672009-09-01 21:04:42 +00001// RUN: clang-cc %s -emit-llvm -o -
2
3// PR4826
4struct A {
5 A() {
6 }
7};
8
9template<typename T>
10struct B {
11 B(T) {}
12
13 A nodes;
14};
15
16int main() {
17 B<int> *n = new B<int>(4);
18}