Mercurial > hg > CbC > CbC_llvm
view clang/test/SemaObjC/class-conforming-protocol-2.m @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -Wmethod-signatures -fsyntax-only -verify %s @protocol NSWindowDelegate @end @protocol IBStringsTableWindowDelegate <NSWindowDelegate> @end @interface NSWindow - (void)setDelegate:(id <NSWindowDelegate>)anObject; // expected-note {{previous definition is here}} - (id <IBStringsTableWindowDelegate>) delegate; // expected-note {{previous definition is here}} @end @interface IBStringsTableWindow : NSWindow {} @end @implementation IBStringsTableWindow - (void)setDelegate:(id <IBStringsTableWindowDelegate>)delegate { // expected-warning {{conflicting parameter types in implementation of 'setDelegate:'}} } - (id <NSWindowDelegate>)delegate { // expected-warning {{conflicting return type in implementation of 'delegate':}} return 0; } @end