1 // { dg-do compile }
2 
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 14 Aug 2002 <nathan@codesourcery.com>
5 
6 // PR c++ 7598, offsetof broke
7 // PR c++ 11072, DR 273's solution is broken
8 
9 #include <cstddef>
10 
11 struct F
12 {
13   char i;
14   char j;
15 };
16 
17 static int ary[offsetof(F, j)];
18