Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / objc.dg / method-6.m
blobaa94bac67751aae40dfa42e5e00b1b400bec5127
1 /* Check that sending messages to variables of type 'Class' does not involve instance methods,
2    unless they reside in root classes.  */
3 /* Author: Ziemowit Laski <zlaski@apple.com>  */
4 /* { dg-do compile } */
5 /* { dg-options "-Wstrict-selector-match" } */
7 #include <objc/Protocol.h>
9 @interface Base
10 - (unsigned)port;
11 @end
13 @interface Derived: Base
14 - (Object *)port;
15 + (Protocol *)port;
16 - (id)starboard;
17 @end
19 void foo(void) {
20   Class receiver;
22   [receiver port];  /* { dg-warning "multiple methods named .\\+port. found" } */
23        /* { dg-warning "using .\\-\\(unsigned( int)?\\)port." "" { target *-*-* } 10 } */
24        /* { dg-warning "also found .\\+\\(Protocol \\*\\)port." "" { target *-*-* } 15 } */
26   [receiver starboard];  /* { dg-warning "no .\\+starboard. method found" } */
27        /* { dg-warning "Messages without a matching method signature" "" { target *-*-* } 26 } */
28        /* { dg-warning "will be assumed to return .id. and accept" "" { target *-*-* } 26 } */
29        /* { dg-warning ".\.\.\.. as arguments" "" { target *-*-* } 26 } */
31   [Class port];  /* { dg-error ".Class. is not an Objective\\-C class name or alias" } */