Mercurial > hg > CbC > CbC_llvm
annotate clang/test/PCH/objc_import.h @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1d019706d866 |
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 |