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:
parent
05097de0ff
commit
36e9ba403f
1 changed files with 3 additions and 3 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue