1--TEST--
2JIT ASSIGN_DIM_OP: overflow
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--FILE--
9<?php
10class test {
11    public$member;
12    function __construct(){
13        $this->member = 9223372036854775807;
14        $this->member += 1;
15    }
16}
17new test();
18?>
19DONE
20--EXPECT--
21DONE
22