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

struct S
{
  S(): i(0) {}
  int i : 3;
};

S s;

const int& cr(s.i);