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.
22 lines
149 B
22 lines
149 B
7 months ago
|
struct C0
|
||
|
{
|
||
|
typedef int Int;
|
||
|
Int m0;
|
||
|
char m1;
|
||
|
|
||
|
C0()
|
||
|
:m0(0),
|
||
|
m1(0)
|
||
|
{}
|
||
|
};
|
||
|
|
||
|
struct C1
|
||
|
{
|
||
|
void
|
||
|
foo(C0&);
|
||
|
};
|
||
|
|
||
|
void
|
||
|
C1::foo(C0&)
|
||
|
{}
|