ru_php/ext/opcache/tests/bug73654.phpt

20 lines
225 B
PHP

--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