[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Rewriter / rewrite-category-property.mm
blobc0f530ecda370f6bd2684dbf4e5e0116d732462b
1 // RUN: %clang_cc1 -x objective-c++ -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp
2 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s
3 // radar 7630636
5 @class Y, Z;
7 @interface A
8 @property (readonly) Y *y;
9 @end
11 @interface A (cat)
12 @property (readonly) Z *z;
13 @end
15 // CHECK-LP: // @property (readonly) Z *z;