xref: /PHP-7.1/ext/opcache/tests/bug73654.phpt (revision 3b79f8f4)
1--TEST--
2Bug #73654: Segmentation fault in zend_call_function
3--FILE--
4<?php
5echo xyz();
6
7function x () : string {
8    return 'x';
9}
10
11function xyz() : string {
12    return x().'yz';
13}
14
15?>
16--EXPECT--
17xyz
18