blob: 06d5c9993d9866e627cd7c3fb92ef6041a4a9370 [file] [log] [blame]
// PR c++/35007
struct AffEntry
{
union {
char base[256];
} conds;
};
struct PfxEntry
: public AffEntry
{
PfxEntry()
{
sizeof(conds.base[0]);
}
};