summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/wrong_inlining_004.phpt
blob: 26f8f4b2bf3fcccce8811a090e86679313fc397b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Inlining through 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)