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