blob: 5146317a1f6149bfb19bc03f770a4faa0ee0d278 [file] [log] [blame]
%module typedef_reference
%include cpointer.i
%pointer_functions(int, intp);
%inline %{
typedef int & IntRef;
int somefunc(IntRef i) { return i; }
int otherfunc(int &i) { return i; }
%}