aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memclass18.C
blob: bb7f6f12b99066a4bf890da7563cd55afd34f6d1 (plain)
1
2
3
4
5
6
7
8
9
// Build don't link:

template <class T> struct A {
  template <class U> struct B;
};

template <class T> template <class U> struct A<T>::B { };

A<int>::B<int> b;