android13/external/libabigail/doc/vizualization/graph/sources/sa-B.cc

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;
}