mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
18 lines
275 B
PHP
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
|