2009-03-24 05:24:46 +03:00
|
|
|
// RUN: clang-cc -verify %s
|
2008-05-06 22:14:26 +04:00
|
|
|
|
|
|
|
@interface I
|
|
|
|
{
|
|
|
|
id d1;
|
|
|
|
}
|
|
|
|
@property (readwrite, copy) id d1;
|
|
|
|
@property (readwrite, copy) id d2;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NOW : I
|
2008-12-06 04:12:43 +03:00
|
|
|
@property (readonly) id d1; // expected-warning {{attribute 'readonly' of property 'd1' restricts attribute 'readwrite' of property inherited from 'I'}} expected-warning {{property 'd1' 'copy' attribute does not match the property inherited from 'I'}}
|
2009-03-03 18:49:23 +03:00
|
|
|
@property (readwrite, copy) I* d2;
|
2008-05-06 22:14:26 +04:00
|
|
|
@end
|