gh8366.phpt 177 B

123456789
  1. --TEST--
  2. Bug GH-8366 (ArrayIterator may leak when calling __construct())
  3. --FILE--
  4. <?php
  5. $it = new \ArrayIterator();
  6. foreach ($it as $elt) {}
  7. $it->__construct([]);
  8. ?>
  9. --EXPECT--