blob: 973fc107e90ebe56b382ab14b5f5b220df043998 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@interface Y
-(void)f;
-(double)f2;
-(void)e;
@end
void foo2() {
// FIXME: Can't verify warnings in headers
//(void)@selector(y);
//(void)@selector(e);
}
@interface X (Blarg)
- (void)blarg_method;
@end
|