mirror of
git://sourceware.org/git/libabigail.git
synced 2025-03-03 21:27:32 +00:00
15 lines
100 B
C++
15 lines
100 B
C++
|
struct C0
|
||
|
{
|
||
|
int m0;
|
||
|
|
||
|
C0()
|
||
|
:m0(0)
|
||
|
{}
|
||
|
};
|
||
|
|
||
|
typedef C0 c0_type;
|
||
|
|
||
|
c0_type
|
||
|
foo()
|
||
|
{return C0();}
|