summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug54281.phpt
blob: 71792eaa20df80727995a436c95021c1b38d66b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #54281 (Crash in spl_recursive_it_rewind_ex)
--FILE--
<?php

class RecursiveArrayIteratorIterator extends RecursiveIteratorIterator {
	function __construct($it, $max_depth) { }
}
$it = new RecursiveArrayIteratorIterator(new RecursiveArrayIterator(array()), 2);

foreach($it as $k=>$v) { }

?>
--EXPECTF--
Fatal error: Uncaught exception 'LogicException' with message 'The object is in an invalid state as the parent constructor was not called' in %s:%d
Stack trace:
#0 %s/bug54281.php(8): RecursiveIteratorIterator->rewind()
#1 {main}
  thrown in %s/bug54281.php on line 8