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