Files
2019-08-04 21:38:19 -05:00

15 lines
110 B
OpenEdge ABL

%module struct_value
%inline %{
struct Foo {
int x;
};
struct Bar {
Foo a;
struct Foo b;
};
%}