xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/Inputs/chain-selectors2.h (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 @interface Y
2   -(void)f;
3   -(void)f2;
4   -(void)x;
5   -(void)y;
6   -(void)e;
7 @end
8 
foo2()9 void foo2() {
10   // FIXME: Can't verify warnings in headers
11   //(void)@selector(y);
12   //(void)@selector(e);
13 }
14 
15 @interface X (Blarg)
16 - (void)blarg_method;
17 @end
18