1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/Zend/tests/generators/errors/count_error.phpt
2016-11-17 09:33:04 +00:00

19 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