Fix #1798728 - numbers can be passed to functions taking char *

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10190 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2007-12-12 19:26:22 +00:00
commit 0d799435b8
2 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,12 @@
use char_strings;
my $val1 = 100;
if (char_strings::CharPingPong($val1) != "100") {
die "failed";
}
my $val2 = "greetings";
if (char_strings::CharPingPong($val2) != "greetings") {
die "failed";
}