2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp30.C
blob6a24d2e254b21a0b09970d081b3a7e5a33388ccb
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 g(U u) { this; }
13 int main()
15   S<char*> s;
16   s.g(3);