Fix the clang-wpa example.
[clang.git] / test / SemaObjC / property-3.m
blob439dc28be9f204431e94aa04210a7945bf0ffa34
1 // RUN: %clang_cc1 -verify %s
3 @interface I 
5         id d1;
7 @property (readwrite, copy) id d1;
8 @property (readwrite, copy) id d2;
9 @end
11 @interface NOW : I
12 @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'}}
13 @property (readwrite, copy) I* d2;
14 @end