1 /* Do not warn about "slightly" mismatched method signatures if
2 -Wstrict-selector-match is off. */
3 /* { dg-do compile } */
4 /* { dg-options "-Wno-strict-selector-match" } */
8 typedef enum { en1_1, en1_2 } En1;
9 typedef enum { en2_1, en2_2 } En2;
10 typedef struct { int a, b; } St1;
11 typedef struct { unsigned a, b; } St2;
14 - (id) meth1: (En1)arg1;
18 @interface Derived: Base
19 - (id) meth1: (En2)arg1;