25 lines
284 B
Plaintext
25 lines
284 B
Plaintext
|
|
--TEST--
|
||
|
|
Inlining of functions with ref arguments
|
||
|
|
--EXTENSIONS--
|
||
|
|
opcache
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
function by_ref(&$var)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
function &get_array() {
|
||
|
|
$array = [new stdClass];
|
||
|
|
return $array;
|
||
|
|
}
|
||
|
|
function test()
|
||
|
|
{
|
||
|
|
by_ref(get_array()[0]);
|
||
|
|
print "ok!\n";
|
||
|
|
}
|
||
|
|
test();
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
ok!
|