summaryrefslogtreecommitdiff
path: root/ext/spl/tests/heap_it_current_empty.phpt
blob: 24230dbeebd49e846903c2d87a6f2ef754388ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
SPL: SplHeap current, check looping through an empty heap gives you no values
--CREDITS--
Mark Schaschke (mark@fractalturtle.com)
TestFest London May 2009
--FILE--
<?php
$h = new SplMinHeap();

foreach ($h as $val) { echo 'FAIL'; }
?>
--EXPECT--