// RUN: clang-cc %s -emit-llvm -o - // PR4826 struct A { A() { } }; template struct B { B(T) {} A nodes; }; int main() { B *n = new B(4); }