18 lines
255 B
PHP
18 lines
255 B
PHP
--TEST--
|
|
Close generator in dtor to avoid freeing order issues
|
|
--FILE--
|
|
<?php
|
|
|
|
$gen = function() {
|
|
yield;
|
|
throw new Exception; // Just to create a live range
|
|
};
|
|
$a = new stdclass;
|
|
$a->a = $a;
|
|
$a->gen = $gen();
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|