This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / g++.dg / template / koenig4.C
blob31e41fcf97f844a5a295684721148f04be90597d
1 // PR c++/13978
3 namespace ns {
4   template <class TP> void func1(TP* t);
5   struct A {};
7  
8 template < class TP >
9 void func2() {
10   func1( new ns::A() );