mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
17 lines
287 B
PHP
17 lines
287 B
PHP
--TEST--
|
|
SPL: RecursiveTreeIterator(void)
|
|
--INI--
|
|
error_reporting=E_ALL&~E_NOTICE
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
new RecursiveTreeIterator();
|
|
} catch (InvalidArgumentException $e) {
|
|
echo "InvalidArgumentException thrown\n";
|
|
}
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
InvalidArgumentException thrown
|
|
===DONE===
|