Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
inherit
/
sizeof1.C
blob: 06d5c9993d9866e627cd7c3fb92ef6041a4a9370 [
file
] [
log
] [
blame
]
// PR c++/35007
struct
AffEntry
{
union
{
char
base
[
256
];
}
conds
;
};
struct
PfxEntry
:
public
AffEntry
{
PfxEntry
()
{
sizeof
(
conds
.
base
[
0
]);
}
};