blob: 69a74f830ce527fed921ad1a90e1be343137dc5f [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -Wselector -verify %s
// rdar://8851684
@interface Foo
- (void) foo;
- (void) bar;
@end
@implementation Foo
- (void) bar
{
}
- (void) foo
{
SEL a,b,c;
a = @selector(b1ar); // expected-warning {{unimplemented selector 'b1ar'}}
b = @selector(bar);
}
@end
@interface I
- length;
@end
SEL func()
{
return @selector(length); // expected-warning {{unimplemented selector 'length'}}
}