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

#include <cstddef>

struct A { int i; };
struct B { A a; };

int main()
{
  return offsetof(B,a.i) != 0;
}