import source from 1.3.40
[external/swig.git] / Examples / test-suite / defvalue_constructor.i
1 %module defvalue_constructor
2 %inline %{
3
4 namespace Foo { 
5  
6     class Bar {}; 
7  
8     class Baz { 
9       public: 
10         Baz(Bar b = Bar()) {}
11     }; 
12
13
14 %}