mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
21 lines
274 B
PHP
21 lines
274 B
PHP
--TEST--
|
|
JIT RET: 002
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.file_update_protection=0
|
|
opcache.jit_buffer_size=32M
|
|
;opcache.jit_debug=257
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
function foo() {
|
|
$c = 1.0;
|
|
return $c;
|
|
}
|
|
var_dump(foo());
|
|
?>
|
|
--EXPECT--
|
|
float(1)
|