added test which breaks perl

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10342 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Jason Stewart 2008-04-04 10:30:49 +00:00
commit 36e9ba403f

View file

@ -47,9 +47,9 @@ $op++;
ok(($op == 5),
"post-increment operator");
$op++;
my $op2 = ++$op;
$op++;
$op2 = $op++;
ok(($op == 7),
ok(($op == 7) and ($op2 == 7),
"multiple post-increments");