Annotation of embedaddon/php/ext/spl/tests/bug46160.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #46160 (SPL - Memory leak when exception is throwed in offsetSet method)
                      3: --FILE--
                      4: <?php
                      5: 
                      6: try {
                      7:        $x = new splqueue;
                      8:        $x->offsetSet(0, 0);
                      9: } catch (Exception $e) { }
                     10: 
                     11: ?>
                     12: DONE
                     13: --EXPECT--
                     14: DONE

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