xref: /php-src/ext/opcache/tests/jit/recv_005.phpt (revision c16ad918)
1--TEST--
2JIT RECV: 005
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7;opcache.jit_debug=257
8--EXTENSIONS--
9opcache
10--FILE--
11<?php
12function foo($var) {
13  var_dump($var);
14}
15foo(1);
16foo(1.0);
17foo("hello");
18foo(array());
19?>
20--EXPECT--
21int(1)
22float(1)
23string(5) "hello"
24array(0) {
25}
26