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