1--TEST--
2SPL: ArrayObject::offsetExists() should return true for element containing NULL
3--FILE--
4<?php
5$ao = new ArrayObject(array('foo' => null));
6var_dump($ao->offsetExists('foo'));
7
8?>
9--EXPECTF--
10bool(true)