Added extra test case

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5170 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-09-30 17:35:39 +00:00
commit 56174160a0

View file

@ -34,6 +34,14 @@ char *foo(void *) {
return (char *) "foo:void *";
}
char *blah(double) {
return (char *) "blah:double";
}
char *blah(char *) {
return (char *) "blah:char *";
}
class Spam {
public:
Spam() { type = "none"; }