1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/generators/clone.phpt
2015-05-17 17:31:43 -05:00

19 lines
270 B
PHP

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