(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
conversion/
bitfield2.C
// PR c++/27292

struct A
{
  int i : 8;
};

bool foo(A a)
{
  return int(a.i);
}