// RUN: %clang_cc1 -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); } int a0(A x) { return x == 1; } // FIXME: the location information for the note isn't very good 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 function template specialization}} int a(B x) { return operator==(&x,1); }