main.cpp 110 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 struct B1 { char f1; }; struct alignas(8) B2 { char f2; }; struct D : B1, B2 {}; D d3g; int main() {}