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

%rename(Bar) Foo;

%inline %{
typedef struct {
    int x;
} Foo;

%}