1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/spl/tests/recursive_tree_iterator_002.phpt
2020-09-09 10:47:43 +02:00

15 lines
284 B
PHP

--TEST--
SPL: RecursiveTreeIterator(void)
--INI--
error_reporting=E_ALL&~E_NOTICE
--FILE--
<?php
try {
new RecursiveTreeIterator();
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
RecursiveTreeIterator::__construct() expects at least 1 argument, 0 given