blob: c94fa3a841f53c7b3a7a020ef928be45a7c1252a [file] [log] [blame]
/* APPLE LOCAL file radar 5453108 */
/* Check that no warning is issued when protocl's method matches a
@dynamic implementation of a property with same name. */
/* { dg-options "-Wall -Werror" } */
@protocol QueryItem
- (id) children;
@end
__attribute__((objc_root_class)) @interface QueryNode <QueryItem>
@property (retain) id children;
@end
@implementation QueryNode
@dynamic children;
@end