1--TEST-- 2JIT ASSIGN: 030 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7opcache.protect_memory=1 8;opcache.jit_debug=257 9--EXTENSIONS-- 10opcache 11--FILE-- 12<?php 13function foo() { 14 $i = 1; 15 $x = 2; 16 var_dump($i=$x); 17 return $i; 18} 19var_dump(foo()); 20?> 21--EXPECT-- 22int(2) 23int(2) 24