Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / constructor2.C
blobe514e9397e9278ed7143b7f0cfe4c89a056d10e0
1 // PR c++/14260
3 template <class TClass> 
4 class T 
5
6 public: 
7   T(short,short f=0) {} 
8   T<TClass>(int f) {} 
9   T<TClass>(int f=0,const char* b=0) {} 
10 };