php-src/ext/opcache/tests/wrong_inlining_004.phpt

24 lines
344 B
PHP

--TEST--
Inlining throgh call_user_func()
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function get_const() {
return 42;
}
function test() {
$x = new stdClass;
var_dump(call_user_func('get_const', $x));
}
test();
?>
--EXPECTF--
int(42)