aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend37.C
blob: c3ee4c7aaefc9336ce7167bcd667f1098e938cbf (plain)
1
2
3
4
5
6
7
// Build don't link:
// Simplified from report by Volker Dobler <volker@hugo.physik.uni-konstanz.de>

template <class T> class A {
  friend int ice<>( int k=0 ); // ERROR - default argument
  friend inline int f<>(double); // ERROR - inline
};