Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / ctor1-aux.cc
blob9990ca29322d5a943e0d451b28b6b3d7d700d96a
1 // Origin: Mark Mitchell <mark@codesourcery.com>
3 template <class T>
4 struct S {
5 template <class U>
6 S (U);
7 };
9 int main ()
11 S<int> (3.0);