Annotation of embedaddon/php/Zend/tests/bug64515.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #64515 (Memoryleak when using the same variablename 2times in function declaration)
        !             3: --FILE--
        !             4: <?php
        !             5: function foo($unused = null, $unused = null, $arg = array()) {
        !             6:            return 1;
        !             7: }
        !             8: foo();
        !             9: echo "okey";
        !            10: ?>
        !            11: --EXPECT--
        !            12: okey

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>