Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / other / friend14.C
blob0f955a09b5fe6fee3a5016d4af2259d20b4a622d
1 // PR c++/59480
3 class Matrix;
5 Matrix rot90 (const Matrix& a, int k = 1);
6 template<typename> Matrix rot90_ (const Matrix& a, int k = 1);
8 class Matrix {
9   friend Matrix rot90 (const Matrix&, int);
10   template<typename> friend Matrix rot90_ (const Matrix&, int);
13 Matrix rot90 (const Matrix& a, int k) { return Matrix(); }
14 template<typename> Matrix rot90_ (const Matrix& a, int k) { return Matrix(); }