Annotation of embedaddon/php/ext/spl/tests/bug40442.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #40442 (ArrayObject::offsetExists broke in 5.2.1, works in 5.2.0)
        !             3: --FILE--
        !             4: <?php
        !             5: $a = new ArrayObject();
        !             6: $a->offsetSet('property', 0);
        !             7: var_dump($a->offsetExists('property'));
        !             8: ?>
        !             9: ===DONE===
        !            10: --EXPECT--
        !            11: bool(true)
        !            12: ===DONE===

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