2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp15.C
blobb9b69873a2470646bbd23c035d386e5308d9dae0
1 // { dg-do assemble  }
2 // GROUPS passed templates membertemplates
3 template <class T>
4 struct S
6   template <class U>
7   void foo(U) {}
8 };
11 void f()
13   S<int> s;
14   s.foo(3);
15   s.foo("hello");