// RUN: %clang_cc1 -Wmethod-signatures -fsyntax-only -verify %s @protocol NSWindowDelegate @end @protocol IBStringsTableWindowDelegate @end @interface NSWindow - (void)setDelegate:(id )anObject; // expected-note {{previous definition is here}} - (id ) delegate; // expected-note {{previous definition is here}} @end @interface IBStringsTableWindow : NSWindow {} @end @implementation IBStringsTableWindow - (void)setDelegate:(id )delegate { // expected-warning {{conflicting parameter types in implementation of 'setDelegate:'}} } - (id )delegate { // expected-warning {{conflicting return type in implementation of 'delegate':}} return 0; } @end