3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 3 Sept 2001 <nathan@codesourcery.com>
6 // Bug 4203. We were bit copying empty bases including the
7 // padding. Which clobbers whatever they overlay.
10 class EmptyBase1 : public EmptyBase0 {};
15 Base1(unsigned int t) : t_(t) {}
18 class PEPE : public Base1, public EmptyBase1
22 : Base1(t), EmptyBase1(EmptyBase1()) {}
29 return pepe.t_ != 255;