aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp63.C
blob: 6b7fc8e44f95defb155f07441192b803c1c783b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
template <class T> struct A {
  template <class U> void f (U u);
};

A<int> a;

template <class T> template <class U> void A<T>::f (U u) { }

main()
{
  a.f (24);
}