blob: ead61508d5a07207a46aacc9e1e2ad790da2b575 [file] [log] [blame]
Fariborz Jahaniandaa03112008-05-06 18:14:26 +00001// RUN: clang -verify %s
2
3@interface I
4{
5 id d1;
6}
7@property (readwrite, copy) id d1;
8@property (readwrite, copy) id d2;
9@end
10
11@interface NOW : I
Fariborz Jahanian567c8df2008-12-06 01:12:43 +000012@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'}}
Fariborz Jahaniandaa03112008-05-06 18:14:26 +000013@property (readwrite, copy) I* d2; // expected-warning {{property type 'I *' does not match property type inherited from 'I'}}
14@end