1--TEST--
2JIT ASSIGN_DIM: 010
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--FILE--
9<?php
10function test() {
11    for($i=0; $i<10; $i++) {
12        $a[] &= $y;
13        $a = null;
14        $a[] =& $y;
15     }
16}
17test();
18?>
19DONE
20--EXPECTF--
21Warning: Undefined variable $a in %sassign_dim_010.php on line 4
22
23Warning: Undefined variable $y in %sassign_dim_010.php on line 4
24DONE
25