f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
24 lines
1 KiB
Objective-C
24 lines
1 KiB
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// rdar://7629420
|
|
|
|
@interface Foo
|
|
@property (readonly) char foo;
|
|
@property (readwrite) char bar; // expected-note {{property declared here}}
|
|
@end
|
|
|
|
@interface Foo ()
|
|
@property (readwrite) char foo; // expected-note 2 {{property declared here}}
|
|
@property (readwrite) char NewProperty; // expected-note 2 {{property declared here}}
|
|
@property (readwrite) char bar; // expected-error{{illegal redeclaration of 'readwrite' property in class extension 'Foo' (perhaps you intended this to be a 'readwrite' redeclaration of a 'readonly' public property?)}}
|
|
@end
|
|
|
|
@interface Foo ()
|
|
@property (readwrite) char foo; // expected-error {{property has a previous declaration}}
|
|
@property (readwrite) char NewProperty; // expected-error {{property has a previous declaration}}
|
|
@end
|
|
|
|
@interface Foo ()
|
|
@property (readonly) char foo; // expected-error {{property has a previous declaration}}
|
|
@property (readwrite) char NewProperty; // expected-error {{property has a previous declaration}}
|
|
@end
|
|
|