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