summaryrefslogtreecommitdiffstats
path: root/test/input/Class-template-friends.cxx
blob: 03057aedea39f374ca2fad6f71517e8f2a439b03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
template <typename T>
class A;
template <typename T>
int f(T);
template <typename T>
class start
{
  friend class A<T>;
  friend int f<T>(T);
  template <typename U>
  friend int f(U);
};
template class start<int>;