1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
2024-03-17 23:08:47 +00:00

21 lines
273 B
PHP

--TEST--
Bug #53144 (Segfault in SplObjectStorage::removeAll)
--FILE--
<?php
$o1 = new StdClass;
$o2 = new StdClass;
$b = new SplObjectStorage();
$b[$o1] = "bar";
$b[$o2] = "baz";
var_dump(count($b));
$b->removeAll($b);
var_dump(count($b));
?>
--EXPECT--
int(2)
int(0)