summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug40442.phpt
blob: d5968119e6476a5ca01b712c913448cc7fc57d71 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Bug #40442 (ArrayObject::offsetExists broke in 5.2.1, works in 5.2.0)
--FILE--
<?php
$a = new ArrayObject();
$a->offsetSet('property', 0);
var_dump($a->offsetExists('property'));
?>
--EXPECT--
bool(true)