fix for perl keyword

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8990 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-03-07 23:05:11 +00:00
commit 53ceae6a0a
5 changed files with 7 additions and 7 deletions

View file

@ -8,8 +8,8 @@ public class runme
if (sneaky1.add(30, 2) != 32)
throw new Exception("add test failed");
if (sneaky1.sub(20, 2) != 18)
throw new Exception("sub test failed");
if (sneaky1.subtract(20, 2) != 18)
throw new Exception("subtract test failed");
if (sneaky1.mul(20, 2) != 40)
throw new Exception("mul test failed");