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

enum EBorderStyle
  {
    BNATIVE, BHIDDEN
  };
struct BorderValue
{
  enum EBorderStyle style:8;
};
enum EBorderStyle f(const struct BorderValue *border)
{
  return border ?  border->style : BNATIVE;
}