view clang/test/PCH/objc_import.h @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
line wrap: on
line source

/* 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