1 // RUN: %clang_cc1 -fsyntax-only -verify %s
8 @property(readonly) id object; // expected-note {{property declared here}}
9 @property(readwrite, assign) id object1; // expected-note {{property declared here}}
10 @property (readonly) int indentLevel;
13 @interface ReadOnly ()
14 @property(readwrite, copy) id object; // expected-warning {{property attribute in continuation class does not match the primary class}}
15 @property(readonly) id object1; // expected-error {{illegal redeclaration of property in continuation class 'ReadOnly' (attribute must be 'readwrite', while its primary must be 'readonly')}}
16 @property (readwrite, assign) int indentLevel; // OK. assign the the default in any case.
20 @property (copy) id fee; // expected-note {{property declared here}}
24 @property (copy) id foo; // expected-note {{property declared here}}
27 @interface Bar <Foo> {
34 @property (copy) id foo; // expected-error {{illegal redeclaration of property in continuation class 'Bar' (attribute must be 'readwrite', while its primary must be 'readonly')}}
35 @property (copy) id fee; // expected-error {{illegal redeclaration of property in continuation class 'Bar' (attribute must be 'readwrite', while its primary must be 'readonly')}}
39 @synthesize foo = _foo;
40 @synthesize fee = _fee;