]> granicus.if.org Git - php/commitdiff
Make test for bug #70852 to cover all cases
authorReeze Xia <reeze@php.net>
Thu, 5 Nov 2015 06:09:24 +0000 (14:09 +0800)
committerReeze Xia <reeze@php.net>
Thu, 5 Nov 2015 06:09:24 +0000 (14:09 +0800)
ext/spl/tests/bug70852.phpt

index da7c00bb66e0fea2984a4cca0c616f84b0704f43..2b23ce4e0943dd255594faeb0758598f1bcad679 100644 (file)
@@ -3,9 +3,15 @@ Bug #70852 Segfault getting NULL offset of an ArrayObject
 --FILE--
 <?php
 $y = new ArrayObject();
-echo $y[NULL];
+
+var_dump($y[NULL]);
+var_dump($y[NULL]++);
 ?>
 ===DONE===
 --EXPECTF--
 Notice: Undefined index:  in %s on line %d
+NULL
+
+Notice: Undefined index:  in %s on line %d
+NULL
 ===DONE===