xref: /PHP-5.4/Zend/tests/bug64515.phpt (revision 1182a335)
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