Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / ctor1.C
blob1c67d0aa84658084f012494d2ba9906855ac8a35
1 // Additional sources: ctor1-aux.cc
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 template <class T>
5 struct S {
6   template <class U>
7   S (U);
8 };
10 template <class T>
11 template <class U>
12 S<T>::S (U) {}
14 template S<int>::S (double);