import source from 1.3.40
[external/swig.git] / Examples / test-suite / struct_value.i
1 %module struct_value
2
3 %inline %{
4
5 struct Foo {
6    int x;
7 };
8
9 struct Bar {
10    Foo   a;
11    struct Foo b;
12 };
13
14 %}