1--TEST--
2Inlining throgh call_user_func()
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.optimization_level=-1
7--SKIPIF--
8<?php require_once('skipif.inc'); ?>
9--FILE--
10<?php
11function get_const() {
12    return 42;
13}
14
15function test() {
16    $x = new stdClass;
17    var_dump(call_user_func('get_const', $x));
18}
19
20test();
21?>
22--EXPECT--
23int(42)
24