php-8.0.30-src/Zend/tests/generators/errors/count_error.phpt

19 lines
276 B
PHP

--TEST--
Generators can't be counted
--FILE--
<?php
function gen() { yield; }
$gen = gen();
try {
count($gen);
} catch (\TypeError $e) {
echo $e->getMessage(), PHP_EOL;
}
?>
--EXPECT--
count(): Argument #1 ($value) must be of type Countable|array, Generator given