1--TEST--
2JIT ASSIGN_DIM: 016
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7--FILE--
8<?php
9function foo() {
10    $y[~$y] = 42;
11}
12@foo();
13?>
14--EXPECTF--
15Fatal error: Uncaught TypeError: Cannot perform bitwise not on null in %sassign_dim_016.php:3
16Stack trace:
17#0 %sassign_dim_016.php(5): foo()
18#1 {main}
19  thrown in %sassign_dim_016.php on line 3
20