mirror of
https://github.com/php/php-src.git
synced 2025-01-09 20:44:33 +08:00
12 lines
235 B
PHP
Executable File
12 lines
235 B
PHP
Executable File
--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
|