1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/spl/tests/spl_pqueue_gc.phpt
2020-02-03 22:52:20 +01:00

16 lines
234 B
PHP

--TEST--
Bug #78436: Broken GC for SplPriorityQueue
--FILE--
<?php
$pqueue = new SplPriorityQueue();
$pqueue->insert($pqueue, 1);
$pqueue2 = new SplPriorityQueue();
$pqueue2->insert(1, $pqueue);
?>
===DONE===
--EXPECT--
===DONE===