brintos

brintos / llvm-project-archived public Read only

0
0
Text · 340 B · ae38b82 Raw
15 lines · plain
1// RUN: %clang_cc1 -x objective-c++ -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp2// RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s3 4@class Y, Z;5 6@interface A7@property (readonly) Y *y;8@end9 10@interface A (cat)11@property (readonly) Z *z;12@end13 14// CHECK-LP: // @property (readonly) Z *z;15