1--TEST-- 2JIT ASSIGN: 003 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(); // [rc1, array] 14 $a = 1; // [rc1, long, reg] 15 $x = $a; 16 var_dump($x); 17} 18foo(); 19?> 20--EXPECT-- 21int(1) 22