aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/crash32.C
blob: 68cf4df6fb220ba0a5b6dfc122a578e39ac47b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link:
// Origin: Jason Merrill <jason@cygnus.com>

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

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