mirror of
https://github.com/php/php-src.git
synced 2024-12-16 05:15:03 +08:00
1f6baa776b
Fixes GH-8962
22 lines
324 B
PHP
22 lines
324 B
PHP
--TEST--
|
|
Check interaction of first-class callables with optimization
|
|
--FILE--
|
|
<?php
|
|
|
|
function test1() {}
|
|
function test2() { return 42; }
|
|
|
|
var_dump(test1(...));
|
|
var_dump(test2(...));
|
|
|
|
?>
|
|
--EXPECT--
|
|
object(Closure)#1 (1) {
|
|
["function"]=>
|
|
string(5) "test1"
|
|
}
|
|
object(Closure)#1 (1) {
|
|
["function"]=>
|
|
string(5) "test2"
|
|
}
|