1/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, January 2011.  */
2/* { dg-options "-Wselector" } */
3/* { dg-do compile } */
4
5#include <objc/objc.h>
6
7@interface RootObject
8@end
9
10@interface MyObject : RootObject
11- (void) method; /* { dg-message "found" } */
12@end
13
14@interface MyObject2  : RootObject
15- (int) method; /* { dg-message "also found" } */
16@end /* { dg-warning "multiple selectors named .-method. found" } */
17