2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp25.C
blob6c196f5d4d64cd2480fa484898dca8f74154dfba
1 // { dg-do link  }
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) { printf ("%d\n", sizeof (U)); }
11   int i[4];
15 int main()
17   S<char*> s;
18   s.f(3);
19   s.f(s);