Mercurial > hg > CbC > CbC_llvm
annotate clang/test/PCH/objc_import.h @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
rev | line source |
---|---|
150 | 1 /* For use with the objc_import.m test */ |
2 | |
3 @interface TestPCH | |
4 + alloc; | |
5 - (void)instMethod; | |
6 @end | |
7 | |
8 @class NewID1; | |
9 @compatibility_alias OldID1 NewID1; | |
10 @class OldID1; | |
11 @class OldID1; | |
12 | |
13 @class NewID2; | |
14 @compatibility_alias OldID2 NewID2; | |
15 @class OldID2; | |
16 @interface OldID2 | |
17 -(void)meth; | |
18 @end |