xref: /aosp_15_r20/external/clang/test/PCH/Inputs/chain-selectors1.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
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 
foo1()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