mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
10 lines
177 B
PHP
10 lines
177 B
PHP
--TEST--
|
|
Bug GH-8366 (ArrayIterator may leak when calling __construct())
|
|
--FILE--
|
|
<?php
|
|
$it = new \ArrayIterator();
|
|
foreach ($it as $elt) {}
|
|
$it->__construct([]);
|
|
?>
|
|
--EXPECT--
|