In gcc/testsuite/: 2011-01-12 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / gcc / testsuite / obj-c++.dg / method-13.mm
blob6938f7d349a26465158c419165a9056c53d46fbb
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 } */
5 #include "../objc-obj-c++-shared/Object1.h"
7 @interface Class1
8 - (void)setWindow:(Object *)wdw;
9 @end
11 @interface Class2
12 - (void)setWindow:(Class1 *)window;
13 @end
15 id foo(void) {
16   Object *obj = [[Object alloc] init];
17   id obj2 = obj;
18   [obj setWindow:nil];  /* { dg-warning ".Object. 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:\\(Object \\*\\)wdw." "" { target *-*-* } 8 } */
24        /* { dg-message "also found .\\-\\(void\\)setWindow:\\(Class1 \\*\\)window." "" { target *-*-* } 12 } */
26   return obj;