summaryrefslogtreecommitdiff
path: root/Zend/tests/bug78689.phpt
blob: 2273fd3532010751ab4434333f8ead4185096656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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