Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/closure_057.phpt

--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