2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp63.C
blob62a52a16dc875084b5e842b5e97ad501c5f00867
1 // { dg-do run  }
2 template <class T> struct A {
3   template <class U> void f (U u);
4 };
6 A<int> a;
8 template <class T> template <class U> void A<T>::f (U u) { }
10 int main()
12   a.f (24);