blob: 0e05c5f752cae6c0c7de52e1e27958b88b4f2be2 [file] [log] [blame]
class S;
template<class T>
int f(T, S);
class S {
template<class T>
friend int f(T t, S) { t; return 0; }
};