mirror of
https://github.com/php/php-src.git
synced 2026-04-20 22:41:20 +02:00
14 lines
214 B
PHP
14 lines
214 B
PHP
--TEST--
|
|
Bug #74977: Recursion leads to crash
|
|
--FILE--
|
|
<?php
|
|
|
|
$iterator = new AppendIterator(array("A","A","A"));
|
|
$iterator->append($iterator);
|
|
var_dump($iterator);
|
|
?>
|
|
--EXPECTF--
|
|
object(AppendIterator)#1 (0) {
|
|
}
|
|
|