xref: /php-src/Zend/tests/bug70397.phpt (revision 902d6439)
1--TEST--
2Bug #70397 (Segmentation fault when using Closure::call and yield)
3--FILE--
4<?php
5
6$f = function () {
7    $this->value = true;
8    yield $this->value;
9};
10
11var_dump($f->call(new class {
12    public $value;
13})->current());
14
15?>
16--EXPECT--
17bool(true)
18