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 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
|