swig/Examples/test-suite/anonymous_bitfield.i

18 lines
232 B
OpenEdge ABL

%module anonymous_bitfield
%inline %{
struct Foo {
int x : 4;
int y : 4;
int : 2;
unsigned int f : 1;
unsigned int : 5;
int z : 15;
unsigned int : 8+6;
unsigned seq : (sizeof(unsigned)*8 - 6);
};
%}