blob: bc66b0be67a001cd7ffa3e2764efac53c09dd3df [file] [log] [blame]
/* Reject ivars that use flexible array members. */
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com> */
/* { dg-do compile } */
typedef struct
{
unsigned long int a;
double b[];
} test_type;
@interface Test
{
test_type c; /* { dg-error "instance variable .c. uses flexible array member" } */
}
@end
@implementation Test
@end