mirror of
git://sourceware.org/git/libabigail.git
synced 2025-02-08 17:47:13 +00:00
13 lines
166 B
C++
13 lines
166 B
C++
|
struct base
|
||
|
{
|
||
|
enum mode : short { in, out, top, bottom };
|
||
|
enum state { pass, fail, unknown };
|
||
|
typedef long int_type;
|
||
|
};
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
base obj;
|
||
|
return 0;
|
||
|
}
|