mirror of
https://github.com/php/php-src.git
synced 2026-04-14 03:22:58 +02:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
16 lines
261 B
PHP
16 lines
261 B
PHP
--TEST--
|
|
Bug #70852 Segfault getting NULL offset of an ArrayObject
|
|
--FILE--
|
|
<?php
|
|
$y = new ArrayObject();
|
|
|
|
var_dump($y[NULL]);
|
|
var_dump($y[NULL]++);
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined index: in %s on line %d
|
|
NULL
|
|
|
|
Notice: Undefined index: in %s on line %d
|
|
NULL
|