modify test to show problem with %extend+overload

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6296 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-10-03 19:57:45 +00:00
commit 5887fe6363

View file

@ -8,6 +8,7 @@
Foo(int a) { return new Foo(); }
~Foo() { delete self;}
int spam(int x) { return x; }
int spam(int x, int y) { return x + y ; }
};
%inline %{