llvm-for-llvmta/tools/clang/test/PCH/objc_import.h
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

19 lines
281 B
Objective-C

/* For use with the objc_import.m test */
@interface TestPCH
+ alloc;
- (void)instMethod;
@end
@class NewID1;
@compatibility_alias OldID1 NewID1;
@class OldID1;
@class OldID1;
@class NewID2;
@compatibility_alias OldID2 NewID2;
@class OldID2;
@interface OldID2
-(void)meth;
@end