blob: ef6834aae2d006695bcbd72f2d03598004340ccd [file] [log] [blame]
// PR c++/91618
template <class T> int f(T t, int)
{ return t.i; }
class A {
friend int ::f(A); // { dg-error "" }
int i;
};
int main()
{
f(A()); // { dg-error "no match" }
}