xref: /PHP-5.5/Zend/tests/bug64515.phpt (revision ed315823)
1--TEST--
2Bug #64515 (Memoryleak when using the same variablename 2times in function declaration)
3--FILE--
4<?php
5function foo($unused = null, $unused = null, $arg = array()) {
6	    return 1;
7}
8foo();
9echo "okey";
10?>
11--EXPECT--
12okey
13