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

template <class T = int> struct A;

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

template class B<int>;