// RUN: %clang_cc1 -fsyntax-only -verify %s // Make sure we accept this templatestruct A{typedef X Y;}; templatebool operator==(A,typename A::Y); // expected-note{{candidate template ignored: failed template argument deduction}} 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}} \ // expected-note{{candidate template ignored: substitution failure [with X = int]}} int a(B x) { return operator==(&x,1); } // expected-error{{no matching function for call to 'operator=='}}