swig/Examples/test-suite/nested_comment.i
2004-11-15 18:45:28 +00:00

21 lines
354 B
OpenEdge ABL

%module nested_comment
// this example shows a problem with 'dump_nested' (parser.y).
%inline %{
typedef struct s1 {
union {
int fsc; /* genie structure hiding - Conductor
*/
int fso; /* genie structure hiding - FSOptions
*/
struct {
double *vals;
int size;
} vector_val; /* matrix values are mainly used
in rlgc models */
char *name;
} n ;
} s2;
%}