20 lines
225 B
Plaintext
20 lines
225 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #73654: Segmentation fault in zend_call_function
|
||
|
|
--EXTENSIONS--
|
||
|
|
opcache
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
echo xyz();
|
||
|
|
|
||
|
|
function x () : string {
|
||
|
|
return 'x';
|
||
|
|
}
|
||
|
|
|
||
|
|
function xyz() : string {
|
||
|
|
return x().'yz';
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
xyz
|