mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-21 01:09:59 +00:00
19 lines
228 B
C++
19 lines
228 B
C++
|
struct base
|
||
|
{
|
||
|
enum mode : short { in, out, top, bottom };
|
||
|
enum state { pass, fail, unknown };
|
||
|
typedef long int_type;
|
||
|
};
|
||
|
|
||
|
struct B : public base
|
||
|
{
|
||
|
mode _M_type;
|
||
|
state _M_state;
|
||
|
};
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
B obj;
|
||
|
return 0;
|
||
|
}
|