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