Fix PR48484
[official-gcc.git] / gcc / testsuite / g++.dg / inherit / sizeof1.C
blob06d5c9993d9866e627cd7c3fb92ef6041a4a9370
1 // PR c++/35007
3 struct AffEntry
5   union {
6     char base[256];
7   } conds;
8 };
10 struct PfxEntry
11 : public AffEntry
13   PfxEntry()
14   {
15     sizeof(conds.base[0]);
16   }