blob: 389b0321817b2fe16d729a28898c3fd8ee1688b0 [file] [log] [blame]
/* Test for -Wundeclared-selector. */
/* Author: Nicola Pero <nicola@brainstorm.co.uk>. */
/* { dg-do compile } */
/* { dg-options "-Wundeclared-selector" } */
/* { dg-additional-options "-Wno-objc-root-class" } */
#include <objc/objc.h>
@interface MyClass
+ (void) methodA;
- (void) methodB;
+ (void) methodD;
- (void) methodF;
@end
@implementation MyClass
+ (void) methodA {}
- (void) methodB {}
+ (void) methodD
{
SEL d = @selector(methodD); /* Ok */
SEL e = @selector(methodE); /* { dg-warning "undeclared selector" } */
}
- (void) methodE
{
SEL e = @selector(methodE); /* Ok */
}
- (void) methodF
{
SEL e = @selector(methodE); /* Ok */
}
@end
int main (void)
{
SEL a = @selector(methodA); /* Ok */
SEL b = @selector(methodB); /* Ok */
SEL c = @selector(methodC); /* { dg-warning "undeclared selector" } */
SEL d = @selector(methodD); /* Ok */
SEL e = @selector(methodE); /* Ok */
return 0;
}