You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@interface Y
|
|
-(void)f;
|
|
-(void)f2;
|
|
-(void)x;
|
|
-(void)y;
|
|
-(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
|