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