new tests

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5161 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-09-26 19:56:45 +00:00
commit 6fb7cf7200
4 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,14 @@
%module defvalue_constructor
%inline %{
namespace Foo {
class Bar {};
class Baz {
public:
Baz(Bar b = Bar());
};
}
%}