mirror of
https://github.com/boostorg/python.git
synced 2026-01-23 17:52:17 +00:00
19 lines
117 B
C++
19 lines
117 B
C++
namespace inherit4 {
|
|
|
|
struct A
|
|
{
|
|
int x;
|
|
};
|
|
|
|
struct B: A
|
|
{
|
|
int y;
|
|
};
|
|
|
|
struct C: B
|
|
{
|
|
int z;
|
|
};
|
|
|
|
}
|