You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
141 B
26 lines
141 B
7 months ago
|
struct B0
|
||
|
{
|
||
|
char m0;
|
||
|
|
||
|
B0();
|
||
|
};
|
||
|
|
||
|
B0::B0()
|
||
|
: m0(0)
|
||
|
{}
|
||
|
|
||
|
struct S : public B0
|
||
|
{
|
||
|
int m0;
|
||
|
|
||
|
S();
|
||
|
};
|
||
|
|
||
|
S::S()
|
||
|
: m0(0)
|
||
|
{}
|
||
|
|
||
|
void
|
||
|
foo(S&)
|
||
|
{}
|