// RUN: clang-cc -fsyntax-only -verify %s @protocol P1 @end @protocol P2 @end @protocol P3 @end @interface INTF - (INTF*) METH1; // expected-note {{previous declaration is here}} - (INTF*) METH1; // expected-error {{duplicate declaration of method 'METH1'}} - (INTF*) METH2; - (INTF*) METH2; // expected-note {{previous declaration is here}} - (INTF*) METH2; // expected-error {{duplicate declaration of method 'METH2'}} - (INTF*) METH3; - (INTF*) METH3; @end INTF* p1;