xref: /PHP-5.5/ext/spl/tests/bug62262.phpt (revision fed1f2d1)
1--TEST--
2Bug #62262: RecursiveArrayIterator does not implement Countable
3--FILE--
4<?php
5
6var_dump(new RecursiveArrayIterator(array()) instanceof Countable);
7
8?>
9--EXPECT--
10bool(true)
11