1--TEST-- 2JIT ASSIGN_DIM: 005 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7opcache.jit_buffer_size=1M 8--FILE-- 9<?php 10set_error_handler(function ($code, $msg) { 11 echo "Error: $msg\n"; 12 $GLOBALS['a'] = null; 13}); 14 15$a[$c] = 16$a[$c] = 'x' ; 17var_dump($a); 18?> 19--EXPECT-- 20Error: Undefined variable $c 21Error: Undefined variable $c 22NULL 23