mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
19 lines
270 B
PHP
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
|