php-src/ext/opcache/tests/wrong_inlining_004.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

24 lines
343 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();
?>
--EXPECT--
int(42)