2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp66.C
blobb6e8b6ff40566e53830199694a4c2a16487ac556
1 // { dg-do assemble  }
3 template <class T>
4 struct S
6   template <class U>
7   void f(U u) { this->template f<>(3); }
8 };
11 void g()
13   S<char> s;
14   s.f(1.0);