swig/SWIG/Examples/test-suite/anonymous_bitfield.i
Dave Beazley fff1d0f06c new test
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4415 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-02-27 17:21:34 +00:00

15 lines
154 B
OpenEdge ABL

%module anonymous_bitfield
%inline %{
struct Foo {
int x : 4;
int y : 4;
int : 2;
int f : 1;
unsigned int : 5;
int z : 15;
};
%}