2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp32.C
blob6dca7e5a0abfa883198cb6195e6d32e049c9adce
1 // { dg-do link  }
2 // GROUPS passed templates membertemplates
3 extern "C" int printf(const char*, ...);
5 struct S
7   template <class U>
8   void g(U u)
9   { i = 3; }
11   int i;
14 int main()
16   S s;
17   s.g(3);