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

1.1     ! misho       1: --TEST--
        !             2: Bug #52237 (Crash when passing the reference of the property of a non-object)
        !             3: --FILE--
        !             4: <?php
        !             5: $data = 'test';
        !             6: preg_match('//', '', $data->info);
        !             7: var_dump($data);
        !             8: ?>
        !             9: --EXPECTF--
        !            10: Warning: Attempt to modify property of non-object in %sbug52237.php on line 3
        !            11: string(4) "test"

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