diff --git a/Examples/test-suite/profiletest.i b/Examples/test-suite/profiletest.i index 08f33c2ea..e75f8fc14 100644 --- a/Examples/test-suite/profiletest.i +++ b/Examples/test-suite/profiletest.i @@ -31,6 +31,35 @@ const char* fl(int i) { return "hello"; } + + const char* fs(const char *s) { + return s; + } + + int fi(int a, int) { + return a; + } + + int fi(char *) { + return 1; + } + + int fi(double) { + return 2; + } + + int fi(A *a) { + return 3; + } + + int fi(int a, int, int) { + return a; + } + + int fi(int a, int, int, int) { + return a; + } + }; %}