mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
11 lines
213 B
PHP
11 lines
213 B
PHP
--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)
|