(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
offsetof5.C
// PR c++/16618

#include <stddef.h>

struct test
{
  const char a;
};

int main()
{
  offsetof(test,a);
}