// RUN: clang-cc -fsyntax-only -verify %s // Make sure we accept this templatestruct A{typedef X Y;}; templatebool operator==(A,typename A::Y); int a(A x) { return operator==(x,1); } // FIXME: The diagnostic here is a bit messed up templatestruct B{typedef X Y;}; templatebool operator==(B*,typename B::Y); // \ expected-error{{overloaded 'operator==' must have at least one parameter of class or enumeration type}} \ expected-note{{in instantiation of default argument for 'operator==' required here}} int a(B x) { return operator==(&x,1); }