mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
19 lines
359 B
PHP
19 lines
359 B
PHP
--TEST--
|
|
SPL: RecursiveIteratorIterator::__construct(void)
|
|
--CREDITS--
|
|
Sebastian Schürmann
|
|
--FILE--
|
|
<?php
|
|
class myRecursiveIteratorIterator extends RecursiveIteratorIterator {
|
|
|
|
}
|
|
|
|
try {
|
|
$it = new myRecursiveIteratorIterator();
|
|
} catch (InvalidArgumentException $e) {
|
|
echo 'InvalidArgumentException thrown';
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
InvalidArgumentException thrown
|