OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp63.C
1 template <class T> struct A {
2   template <class U> void f (U u);
3 };
4
5 A<int> a;
6
7 template <class T> template <class U> void A<T>::f (U u) { }
8
9 int main()
10 {
11   a.f (24);
12 }
13