aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/offsetof4.C
blob: ba051480d1d63c61ad3e90594179523c9ed848f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile }
// Contributed by Bill Helfinstine <bhelf at flitterfly dot whirpon dot com>
// PR c++/14932: Allow subscript operator in offsetof

#include <cstddef>

struct A
{
  int bar;
  int foo[22];
};

const int off = offsetof(A, foo[12]);