diff options
Diffstat (limited to 'test/SemaObjC/property-in-class-extension.m')
-rw-r--r-- | test/SemaObjC/property-in-class-extension.m | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/test/SemaObjC/property-in-class-extension.m b/test/SemaObjC/property-in-class-extension.m index 3f252d0..6ae0b81 100644 --- a/test/SemaObjC/property-in-class-extension.m +++ b/test/SemaObjC/property-in-class-extension.m @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s -// rdar: // 7766184 +// rdar://7766184 @interface Foo @end @@ -12,4 +12,39 @@ void FUNC () { foo.bar = 0; // expected-error {{assigning to property with 'readonly' attribute not allowed}} } +// rdar://8747333 +@class NSObject; + +@interface rdar8747333 { +@private + NSObject *_bar; + NSObject *_baz; + NSObject *_bam; +} +- (NSObject *)baz; +@end + +@interface rdar8747333 () +- (NSObject *)bar; +@end + +@interface rdar8747333 () +@property (readwrite, assign) NSObject *bar; +@property (readwrite, assign) NSObject *baz; +@property (readwrite, assign) NSObject *bam; +@property (readwrite, assign) NSObject *warn; +@end + +@interface rdar8747333 () +- (NSObject *)bam; +- (NSObject *)warn; // expected-note {{method definition for 'warn' not found}} +- (void)setWarn : (NSObject *)val; // expected-note {{method definition for 'setWarn:' not found}} +@end + +@implementation rdar8747333 // expected-warning {{incomplete implementation}} +@synthesize bar = _bar; +@synthesize baz = _baz; +@synthesize bam = _bam; +@dynamic warn; +@end |