mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
12 lines
235 B
PHP
12 lines
235 B
PHP
--TEST--
|
|
Bug #49972 (AppendIterator undefined function crash)
|
|
--FILE--
|
|
<?php
|
|
|
|
$iterator = new AppendIterator();
|
|
$iterator->undefined();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Call to undefined method AppendIterator::undefined() in %s on line %d
|