xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/objc_import.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc /* For use with the objc_import.m test */
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc @interface TestPCH
4*f4a2713aSLionel Sambuc + alloc;
5*f4a2713aSLionel Sambuc - (void)instMethod;
6*f4a2713aSLionel Sambuc @end
7*f4a2713aSLionel Sambuc 
8*f4a2713aSLionel Sambuc @class NewID1;
9*f4a2713aSLionel Sambuc @compatibility_alias OldID1 NewID1;
10*f4a2713aSLionel Sambuc @class OldID1;
11*f4a2713aSLionel Sambuc @class OldID1;
12*f4a2713aSLionel Sambuc 
13*f4a2713aSLionel Sambuc @class NewID2;
14*f4a2713aSLionel Sambuc @compatibility_alias OldID2 NewID2;
15*f4a2713aSLionel Sambuc @class OldID2;
16*f4a2713aSLionel Sambuc @interface OldID2
17*f4a2713aSLionel Sambuc -(void)meth;
18*f4a2713aSLionel Sambuc @end
19