Fix link error in test

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12490 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2011-02-20 00:27:39 +00:00
commit 4458ce66d0

View file

@ -12,5 +12,9 @@ class B {
int foo(int x);
A foo(string y);
};
%}
%{
int B::foo(int x) { return 0; }
A B::foo(string y) { return A(); }
%}