(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
offsetof1.C
#include <stddef.h>

template <bool> struct StaticAssert;
template <> struct StaticAssert<true> {};

struct MyPOD
{
  int a; int b; int c; 
};

StaticAssert<(offsetof(MyPOD, a) == 0)> s;