xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/overriding-property-in-class-extension.m (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc// RUN: %clang_cc1  -fsyntax-only -verify -Weverything %s
2*0a6a1f1dSLionel Sambuc// expected-no-diagnostics
3f4a2713aSLionel Sambuc// rdar://12103434
4f4a2713aSLionel Sambuc
5f4a2713aSLionel Sambuc@class NSString;
6f4a2713aSLionel Sambuc
7f4a2713aSLionel Sambuc@interface NSObject @end
8f4a2713aSLionel Sambuc
9f4a2713aSLionel Sambuc@interface MyClass  : NSObject
10f4a2713aSLionel Sambuc
11*0a6a1f1dSLionel Sambuc@property (nonatomic, copy, readonly) NSString* name;
12f4a2713aSLionel Sambuc
13f4a2713aSLionel Sambuc@end
14f4a2713aSLionel Sambuc
15f4a2713aSLionel Sambuc@interface MyClass () {
16f4a2713aSLionel Sambuc    NSString* _name;
17f4a2713aSLionel Sambuc}
18f4a2713aSLionel Sambuc
19f4a2713aSLionel Sambuc@property (nonatomic, copy) NSString* name;
20f4a2713aSLionel Sambuc
21f4a2713aSLionel Sambuc@end
22f4a2713aSLionel Sambuc
23f4a2713aSLionel Sambuc@implementation MyClass
24f4a2713aSLionel Sambuc
25f4a2713aSLionel Sambuc@synthesize name = _name;
26f4a2713aSLionel Sambuc
27f4a2713aSLionel Sambuc@end
28