18 lines
114 B
C++
18 lines
114 B
C++
struct A {
|
|
int x;
|
|
};
|
|
|
|
struct B {
|
|
int y;
|
|
};
|
|
|
|
struct C {
|
|
int z;
|
|
};
|
|
|
|
struct D: A, B, C {
|
|
int d;
|
|
};
|
|
|
|
D order;
|