summaryrefslogtreecommitdiff
path: root/Zend/tests/bug64515.phpt
blob: aeb2cd1564559d82a67e5d74214ca9dc19c4967d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Bug #64515 (Memoryleak when using the same variablename 2times in function declaration) (PHP7)
--FILE--
<?php
function foo($unused = null, $unused = null, $arg = array()) {
        return 1;
}
foo();
echo "okey";
?>
--EXPECTF--
Fatal error: Redefinition of parameter $unused in %sbug64515.php on line 2