blob: 3f65516e75e4506e7a35b8d26c9929588e4fbf79 [file] [log] [blame]
/* Reject ivars that use flexible array members. */
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com> */
/* { dg-do compile } */
/* { dg-additional-options "-Wno-objc-root-class" } */
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