1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/Zend/tests/generators/clone.phpt
2013-03-29 11:42:10 +01:00

16 lines
213 B
PHP

--TEST--
Generators cannot be cloned
--FILE--
<?php
function gen() {
yield;
}
$gen = gen();
clone $gen;
?>
--EXPECTF--
Fatal error: Trying to clone an uncloneable object of class Generator in %s on line %d