diff --git a/Examples/test-suite/default_cast.i b/Examples/test-suite/default_cast.i index 661e8bc7f..60faf9c28 100644 --- a/Examples/test-suite/default_cast.i +++ b/Examples/test-suite/default_cast.i @@ -1,6 +1,7 @@ %module default_cast %inline %{ -void foo(const char *m = (const char *) NULL) { }; +void foo(const char *m = (const char *) NULL) { } +void bar(const char *m = (const char *) "Hello") { } %}