2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / ctor2.C
blobe7dbfb77324283f2c01e7ff60032243d1872617f
1 // { dg-do assemble  }
2 // Test for use of template parms in constructor name.
3 // Submitted by Jason Merrill <jason@cygnus.com>
5 template <class T>
6 struct A {
7   A<T>();
8 };
10 template <class T>
11 A<T>::A<T>()