* c-common.c (get_priority): Add check for
[official-gcc.git] / gcc / testsuite / obj-c++.dg / method-5.mm
blob17c841a46612272c7830c787edad52d990c8c9fb
1 /* Do not warn about "slightly" mismatched method signatures if 
2    -Wstrict-selector-match is off.  */
4 /* { dg-do compile } */
5 /* { dg-options "-Wno-strict-selector-match" } */
7 #include <objc/objc.h>
9 typedef enum { en1_1, en1_2 } En1;
10 typedef enum { en2_1, en2_2 } En2;
11 typedef struct { int a, b; } St1;
12 typedef struct { unsigned a, b; } St2;
14 @interface Base
15 - (id) meth1: (En1)arg1;
16 - (St1) window;
17 @end
19 @interface Derived: Base
20 - (id) meth1: (En2)arg1;
21 - (St2)window;
22 @end
24 void foo(void) {
25   id r;
26   En1 en;
28   [r meth1:en];
29   [r window];