1--TEST-- 2JIT RECV: infinite loop 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 13 14function test(array $args, $short_options, $long_options = null) 15{ 16 echo "okey"; 17} 18 19test(array(), "d:e", 222, 3434); 20 21?> 22--EXPECT-- 23okey 24