1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00
Files
archived-php-src/Zend/tests/generators/bug65035.phpt
Nikita Popov f3e5bbe6f3 Implement arrow functions
Per RFC: https://wiki.php.net/rfc/arrow_functions_v2

Co-authored-by: Levi Morrison <levim@php.net>
Co-authored-by: Bob Weinand <bobwei9@hotmail.com>
2019-05-02 15:04:03 +02:00

21 lines
186 B
PHP

--TEST--
Bug #65035: yield / exit segfault
--FILE--
<?php
function gen() {
f();
yield;
}
function f() {
exit('Done');
}
$gen = gen();
$gen->current();
?>
--EXPECT--
Done