* gimple-ssa-store-merging.c (struct store_immediate_info): Add
[official-gcc.git] / gcc / testsuite / objc.dg / type-size-4.m
blob7e26da34a43de9c8bb67d40cd4322f438c250e2c
1 /* Allow ivars that are pointers to structs with an unknown size.  */
2 /* Contributed by Nicola Pero  <nicola.pero@meta-innovation.com> */
3 /* PR objc/47832 */
4 /* { dg-do compile } */
6 typedef struct
8   unsigned long int a;
9   double b[];
10 } test_type;
12 @interface Test
14   /* These are all fine.  */
15   double *a;
16   struct { int x; double y[]; } *b;
17   test_type *c;
18   union union_type { int x; test_type y; } *d;
20 @end
22 @implementation Test
23 @end