php-src/Zend/tests/closure_057.phpt
2020-02-03 22:52:20 +01:00

23 lines
271 B
PHP

--TEST--
Closure 057: segfault in leave helper
--FILE--
<?php
class A {
}
function getfunc() {
$b = function() {
$a = function() {
};
$a();
};
return $b->bindTo(new A());
}
call_user_func(getfunc());
echo "okey";
?>
--EXPECT--
okey