(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
inherit/
sizeof1.C
// PR c++/35007

struct AffEntry
{
  union {
    char base[256];
  } conds;
};

struct PfxEntry
: public AffEntry
{
  PfxEntry()
  {
    sizeof(conds.base[0]);
  }
};