summaryrefslogtreecommitdiff
path: root/Zend/tests/bug79792.phpt
blob: ca662e27e96bc061dc67eed35d53130c3cf40398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #79792: HT iterators not removed if empty array is destroyed
--FILE--
<?php
$a = [42];
foreach ($a as &$c) {
    // Make the array empty.
    unset($a[0]);
    // Destroy the array.
    $a = null;
}
?>
===DONE===
--EXPECTF--
Warning: foreach() argument must be of type array|object, null given in %s on line %d
===DONE===