blob: b101c17c3a587953b0d93f00c85a40b939b96f42 (
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
|