Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Rewriter/rewrite-implementation.mm @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp |
2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp | |
3 // radar 7649577 | |
4 | |
5 @interface a | |
6 @end | |
7 | |
8 @interface b : a | |
9 @end | |
10 | |
11 @implementation b | |
12 @end | |
13 | |
14 @interface NSArray @end | |
15 @class NSArray; | |
16 @implementation NSArray @end |