URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [obj-c++.dg/] [naming-1.mm] - Rev 762
Go to most recent revision | Compare with Previous | Blame | View Log
/* Testing for detecting duplicate ivars. */
/* { dg-do compile } */
typedef struct S { int i; } NSDictionary;
@interface A
{
NSDictionary * _userInfo1; /* { dg-message "previous declaration" } */
NSDictionary * _userInfo2; /* { dg-message "previous declaration" } */
NSDictionary * _userInfo3; /* { dg-message "previous declaration" } */
NSDictionary * _userInfo4; /* { dg-message "previous declaration" } */
}
@end
@interface B : A
{
NSDictionary * _userInfo1; /* { dg-error "duplicate instance variable" } */
NSDictionary * _userInfo2; /* { dg-error "duplicate instance variable" } */
}
@end
@interface C : A
@end
@interface D : C
{
NSDictionary * _userInfo3; /* { dg-error "duplicate instance variable" } */
NSDictionary * _userInfo4; /* { dg-error "duplicate instance variable" } */
}
@end
Go to most recent revision | Compare with Previous | Blame | View Log