php-src/Zend/tests/closure_057.phpt
2015-03-04 18:26:58 +08:00

23 lines
244 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