* config.gcc: Remove MASK_JUMP_IN_DELAY from target_cpu_default2.
[official-gcc.git] / gcc / testsuite / obj-c++.dg / method-13.mm
blobee167bde36ff75d4c94dc674a4e02db53b4a56a6
1 /* Check if finding multiple signatures for a method is handled gracefully.  Author:  Ziemowit Laski <zlaski@apple.com>  */
2 /* { dg-options "-Wstrict-selector-match" } */
3 /* { dg-do compile } */
4 #include <objc/objc.h>
5 #include "../objc-obj-c++-shared/TestsuiteObject.h"
7 @interface Class1
8 - (void)setWindow:(TestsuiteObject *)wdw;
9 @end
11 @interface Class2
12 - (void)setWindow:(Class1 *)window;
13 @end
15 id foo(void) {
16   TestsuiteObject *obj = [[TestsuiteObject alloc] init];
17   id obj2 = obj;
18   [obj setWindow:nil];  /* { dg-warning ".TestsuiteObject. may not respond to .\\-setWindow:." } */
19        /* { dg-warning "Messages without a matching method signature" "" { target *-*-* } 18 } */
20        /* { dg-warning "will be assumed to return .id. and accept" "" { target *-*-* } 18 } */
21        /* { dg-warning ".\.\.\.. as arguments" "" { target *-*-* } 18 } */
22   [obj2 setWindow:nil]; /* { dg-warning "multiple methods named .\\-setWindow:. found" } */
23        /* { dg-message "using .\\-\\(void\\)setWindow:\\(TestsuiteObject \\*\\)wdw." "" { target *-*-* } 8 } */
24        /* { dg-message "also found .\\-\\(void\\)setWindow:\\(Class1 \\*\\)window." "" { target *-*-* } 12 } */
26   return obj;