1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 struct JArray
4 {
5   int data[1];
6 };
copyIntoByteArray(struct JArray * dest,__SIZE_TYPE__ offset)7 void *copyIntoByteArray (struct JArray *dest, __SIZE_TYPE__ offset)
8 {
9   void *pdest = dest->data + offset;
10   return pdest;
11 }
12