1 struct A { 2 int x; 3 }; 4 5 struct B { 6 int y; 7 }; 8 9 struct C { 10 int z; 11 }; 12 13 struct D: A, B, C { 14 int d; 15 }; 16 17 D order; 18