aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc.dg/type-size-5.m
blob: d89af32b452e41b1eacd95a4088878f7bfd9218c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 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
{
  double a[];                                 /* { dg-error "instance variable .a. has unknown size" } */
  struct { int x; double y[]; } b;            /* { dg-error "instance variable .b. uses flexible array member" } */
  test_type c;                                /* { dg-error "instance variable .c. uses flexible array member" } */
  test_type d[4];                             /* { dg-error "instance variable .d. uses flexible array member" } */
  union union_type { int x; test_type y; } e; /* { dg-error "instance variable .e. uses flexible array member" } */
}
@end

@implementation Test
@end