mirror of
https://github.com/php/php-src.git
synced 2025-01-26 13:44:22 +08:00
18 lines
202 B
PHP
18 lines
202 B
PHP
--TEST--
|
|
Bug #73654: Segmentation fault in zend_call_function
|
|
--FILE--
|
|
<?php
|
|
echo xyz();
|
|
|
|
function x () : string {
|
|
return 'x';
|
|
}
|
|
|
|
function xyz() : string {
|
|
return x().'yz';
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
xyz
|