summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug60577.phpt
blob: 33fc133d0fb9e2b8b9a2717ebbcdf9ec9be7f5d4 (plain)
1
2
3
4
5
6
7
8
--TEST--
count(new EmptyIterator) should return zero
--FILE--
<?php
$it = new EmptyIterator;
var_dump(count($it));
--EXPECT--
int(0)