blob: b0b68f8332c11ca8d96f31815c7490963a8490fb (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@interface X
-(void)f;
-(void)f2;
-(void)g:(int)p;
-(void)h:(int)p1 foo:(int)p2;
@end
void foo1() {
// FIXME: Can't verify warnings in headers
//(void)@selector(x);
(void)@selector(f);
}
@interface X (Blah)
- (void)blah_method;
@end
|