blob: 58f686d9cec8c056b0bbb479e1ef2e902d7d899b [file] [log] [blame]
// PR c++/51219
struct A
{
int i;
int : 8;
};
void foo()
{
A a = { 0 };
}