git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10981 626c5289-ae23-0410-ae9c-e8d60b6d4f22
22 lines
279 B
OpenEdge ABL
22 lines
279 B
OpenEdge ABL
%module nested_structs
|
|
|
|
// bug #491476
|
|
%inline %{
|
|
struct {
|
|
struct {
|
|
int a;
|
|
} a, b;
|
|
} a;
|
|
|
|
%}
|
|
|
|
// bug #909387
|
|
%inline %{
|
|
struct foo {
|
|
struct happy; // no warning
|
|
struct sad { int x; }; // warning
|
|
happy *good(); // produces good code
|
|
sad *bad(); // produces bad code
|
|
};
|
|
%}
|
|
|