2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 17:52:17 +00:00
Files
python/pyste/tests/inherit4.h
2003-08-26 23:24:02 +00:00

19 lines
117 B
C++

namespace inherit4 {
struct A
{
int x;
};
struct B: A
{
int y;
};
struct C: B
{
int z;
};
}