php-src/Zend/tests/bug78689.phpt
2019-10-29 15:06:16 +01:00

14 lines
214 B
PHP

--TEST--
Bug #78689: Closure::fromCallable() doesn't handle [Closure, '__invoke']
--FILE--
<?php
$a = [function () { echo "123\n"; }, '__invoke'];
$a();
$b = Closure::fromCallable($a);
$b();
?>
--EXPECT--
123
123