mirror of
https://github.com/boostorg/python.git
synced 2026-01-23 17:52:17 +00:00
40 lines
495 B
C++
40 lines
495 B
C++
|
|
namespace inherit3 {
|
|
|
|
struct A
|
|
{
|
|
struct X { int y; };
|
|
int x;
|
|
virtual int foo() { return 0; }
|
|
virtual int foo(int x) { return x; }
|
|
A operator+(A o) const
|
|
{
|
|
A r;
|
|
r.x = o.x + x;
|
|
return r;
|
|
}
|
|
enum E { i, j };
|
|
|
|
};
|
|
|
|
struct B: A
|
|
{
|
|
struct X { int y; };
|
|
int x;
|
|
int foo() { return 1; }
|
|
A operator+(A o) const
|
|
{
|
|
A r;
|
|
r.x = o.x + x;
|
|
return r;
|
|
}
|
|
enum E { i, j };
|
|
|
|
};
|
|
|
|
struct C: A
|
|
{
|
|
};
|
|
|
|
}
|