1 /* Check that sending messages to variables of type 'Class' does not involve instance methods, unless they reside in root classes. */
2 /* Author: Ziemowit Laski <zlaski@apple.com> */
3 /* { dg-options "-Wstrict-selector-match" } */
4 /* { dg-do compile } */
6 #include "../objc-obj-c++-shared/Protocol1.h"
12 @interface Derived: Base
21 [receiver port]; /* { dg-warning "multiple methods named .\\+port. found" } */
22 /* { dg-warning "using .\\-\\(unsigned( int)?\\)port." "" { target *-*-* } 9 } */
23 /* { dg-warning "also found .\\+\\(Protocol \\*\\)port." "" { target *-*-* } 14 } */
25 [receiver starboard]; /* { dg-warning "no .\\+starboard. method found" } */
26 /* { dg-warning "Messages without a matching method signature" "" { target *-*-* } 25 } */
27 /* { dg-warning "will be assumed to return .id. and accept" "" { target *-*-* } 25 } */
28 /* { dg-warning ".\.\.\.. as arguments" "" { target *-*-* } 25 } */
30 [Class port]; /* { dg-error ".Class. is not an Objective\\-C class name or alias" } */