FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp26.C
blobcbfc93eb2cf973539c370d8d1f41831d9d1a8631
1 // Build don't run:
2 // GROUPS passed templates membertemplates
3 extern "C" int printf(const char*, ...);
5 template <class X>
6 struct S
8   template <class U>
9   void f(U u);
11   int i[4];
15 template <class X>
16 template <class U>
17 void S<X>::f(U u)
19   printf ("%d\n", sizeof (U));
23 int main()
25   S<char*> s;
26   s.f(3);
27   s.f(s);