This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template14.C
blobada87524352026b7c88d69db833bea8a2136e84e
1 // PR c++/14550
3 struct A { 
4   A();
5 };
7 template <int> void foo()
9   A *p = new A;
12 void bar()
14   foo<0>();