blob: eb6abe73c7d31a90dd383260ad7996b40dac0a1a [file] [log] [blame]
%module typemap_delete
%typemap(in) Rect* (Rect temp) {
$1 = 0;
will_not_compile
}
%typemap(in) Rect*;
%inline %{
struct Rect
{
int val;
Rect(int v) : val(v) {}
};
%}