php-src/ext/spl/tests/bug62616.phpt
2012-07-21 23:30:32 +08:00

16 lines
266 B
PHP

--TEST--
Bug #62616 (ArrayIterator::count() from IteratorIterator instance gives Segmentation fault)
--FILE--
<?php
$ai = new ArrayIterator(array(0,1));
var_dump($ai->count());
$ii = new IteratorIterator($ai);
var_dump($ii->count());
?>
--EXPECTF--
int(2)
int(2)