summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug70852.phpt
blob: 463f9d1b438cf6d91015b96acb582fd80c5283a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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