blob: aa60d3505783f2934c4b2de51a5d866a652928ba [file] [log] [blame]
// PR c++/27292
struct A
{
int i : 8;
};
bool foo(A a)
{
return int(a.i);
}