summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug62262.phpt
blob: 0e006ec2c252f09ac59c966f03543007ca06f2e0 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Bug #62262: RecursiveArrayIterator does not implement Countable
--FILE--
<?php

var_dump(new RecursiveArrayIterator(array()) instanceof Countable);

?>
--EXPECT--
bool(true)