(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
init/
bitfield5.C
// PR c++/51219

struct A
{
  int i;
  int : 8;
};

void foo()
{
  A a = { 0 };
}