mirror of
https://github.com/php/php-src.git
synced 2025-01-25 13:14:22 +08:00
10 lines
138 B
PHP
10 lines
138 B
PHP
--TEST--
|
|
Bug #46031 (Segfault in AppendIterator::next)
|
|
--FILE--
|
|
<?php
|
|
$x = new AppendIterator();
|
|
var_dump($x->next());
|
|
?>
|
|
--EXPECT--
|
|
NULL
|