[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / property-category-3.m
blob9be97ae5c8227ddad0d811d167ab568e94cc3cec
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
3 @protocol P
4   @property(readonly) int X; // expected-note {{property declared here}}
5 @end
7 @protocol P1<P>
8   @property (copy) id ID;
9 @end
11 @interface I
12 @end
14 @interface I (Cat) <P>
15 @property float X; // expected-warning {{property type 'float' is incompatible with type 'int' inherited from 'P'}}
16 @end
18 @interface I (Cat2) <P1>
19 @property (retain) id ID; // expected-warning {{'copy' attribute on property 'ID' does not match the property inherited from 'P1'}}
20 @end
23 @interface A 
24 @property(assign) int categoryProperty;
25 @end
27 // Don't issue warning on unimplemented setter/getter
28 // because property is @dynamic.
29 @implementation A 
30 @dynamic categoryProperty;
31 @end