php-src/Zend/tests/generators/errors/count_error.phpt
2016-11-17 09:33:04 +00:00

18 lines
275 B
PHP

--TEST--
Generators can't be counted
--FILE--
<?php
function gen() { yield; }
$gen = gen();
try {
count($gen);
} catch (Exception $e) {
echo $e;
}
?>
--EXPECTF--
Warning: count(): Parameter must be an array or an object that implements Countable in %s on line %d