summaryrefslogtreecommitdiffstats
path: root/test/input/Class-template-friends.cxx
blob: e1b31663e49232aacdddf77cb5c4b07255ad596a (plain)
1
2
3
4
5
6
7
8
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>;