1/* PR c/32041 */
2/* { dg-do compile } */
3
4struct S
5{
6  int c;
7  struct { float f; } sa[2];
8};
9
10char a[__builtin_offsetof (struct S, sa->f)
11       == __builtin_offsetof (struct S, sa[0].f) ? 1 : -1];
12
13