blob: 4c12a9392dc14843bb3e20b2842ed2c624f18695 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// RUN: %clang_cc1 -fsyntax-only -Wselector -verify -Wno-objc-root-class %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'}}
}
// rdar://9545564
@class MSPauseManager;
@protocol MSPauseManagerDelegate
@optional
- (void)pauseManagerDidPause:(MSPauseManager *)manager;
- (int)respondsToSelector:(SEL)aSelector;
@end
@interface MSPauseManager
{
id<MSPauseManagerDelegate> _delegate;
}
@end
@implementation MSPauseManager
- (id) Meth {
if ([_delegate respondsToSelector:@selector(pauseManagerDidPause:)])
return 0;
return 0;
}
@end
|