blob: 482311684c30f03bb6cfe90c7a1cde9f0846d402 [file] [log] [blame]
/* APPLE LOCAL begin radar 4291785 */
/* Testing for detecting duplicate ivars. */
/* { dg-do compile } */
typedef struct S { int i; } NSDictionary;
__attribute__((objc_root_class)) @interface A
{
NSDictionary * _userInfo;
}
@end
@interface B : A
{
NSDictionary * _userInfo; /* { dg-error "duplicate member" } */
NSDictionary * _userInfo; /* { dg-error "duplicate member" } */
}
@end
@interface C : A
@end
@interface D : C
{
NSDictionary * _userInfo; /* { dg-error "duplicate member" } */
NSDictionary * _userInfo; /* { dg-error "duplicate member" } */
}
@end
/* APPLE LOCAL end radar 4291785 */