1 // RUN: %clang_cc1 -verify %s
6 @protocol ProtocolObject
8 @property (copy) id MayCauseError;
11 @protocol ProtocolDerivedGCObject <ProtocolObject>
15 @interface GCObject : Object <ProtocolDerivedGCObject> {
20 @property int OwnClass;
23 @interface ReleaseObject : GCObject <ProtocolObject> {
27 @property (retain) id MayCauseError; // expected-warning {{'copy' attribute on property 'MayCauseError' does not match the property inherited from 'ProtocolObject'}}