diff --git a/Examples/test-suite/overload_simple.i b/Examples/test-suite/overload_simple.i index 2c2e78b00..bdcd7d5e5 100644 --- a/Examples/test-suite/overload_simple.i +++ b/Examples/test-suite/overload_simple.i @@ -9,7 +9,11 @@ struct Foo { }; -struct Bar { +class Bar { +public: + Bar(int i = 0) {} + + static int foo(int a=0, int b=0) {return 0;} }; char *foo(int) {