1--TEST-- 2JIT ASSIGN: 006 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() { 13 $a = array(); 14 $c = array(); 15 $a = 1; 16 $c = $a; 17 return $c; 18} 19var_dump(foo()); 20?> 21--EXPECT-- 22int(1) 23