mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-22 01:40:12 +00:00
20 lines
126 B
C++
20 lines
126 B
C++
|
struct C0
|
||
|
{
|
||
|
typedef int Int;
|
||
|
Int m0;
|
||
|
|
||
|
C0()
|
||
|
:m0(0)
|
||
|
{}
|
||
|
};
|
||
|
|
||
|
struct C1
|
||
|
{
|
||
|
void
|
||
|
foo(C0&);
|
||
|
};
|
||
|
|
||
|
void
|
||
|
C1::foo(C0&)
|
||
|
{}
|