2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass17.C
blob0750ded61b19034492b32ce95a901c4fd4e819c8
1 // { dg-do assemble  }
3 template <class T> struct S 
5   template <class U> struct I 
6   {
7   };
9   S();
10   S(S& s);
11   S(I<T>);
13   template <class U> operator I<U>();
16 S<int> f();
17 void g(S<int>);
19 void h()
21   g(f());