mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
16 lines
235 B
PHP
16 lines
235 B
PHP
--TEST--
|
|
Bug #70397 (Segmentation fault when using Closure::call and yield)
|
|
--FILE--
|
|
<?php
|
|
|
|
$f = function () {
|
|
$this->value = true;
|
|
yield $this->value;
|
|
};
|
|
|
|
var_dump($f->call(new class {})->current());
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|