summaryrefslogtreecommitdiff
path: root/Examples/test-suite/struct_value.i
blob: bf944e2c591857240a989d2fa8613b8d335c0ba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%module struct_value

%inline %{

struct Foo {
   int x;
};

struct Bar {
   Foo   a;
   struct Foo b;
};

%}