summaryrefslogtreecommitdiff
path: root/Examples/test-suite/overload_extendc.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/overload_extendc.i')
-rw-r--r--Examples/test-suite/overload_extendc.i3
1 files changed, 3 insertions, 0 deletions
diff --git a/Examples/test-suite/overload_extendc.i b/Examples/test-suite/overload_extendc.i
index f5304af91..1c1dd00b6 100644
--- a/Examples/test-suite/overload_extendc.i
+++ b/Examples/test-suite/overload_extendc.i
@@ -13,6 +13,9 @@ typedef struct Foo {
int test(char *s) { s = 0; return 2; }
int test(double x, double y) { x = 0; y = 0; return 3; }
int test(char *s, int int1, int int2) { s = 0; return int1+int2; }
+
+ /* C default arguments */
+ int test(Foo* f, int i=10, int j=20) { return i+j; }
};