1--TEST--
2JIT ASSIGN_STATIC_PROP_OP: 001
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--EXTENSIONS--
9opcache
10--FILE--
11<?php
12function ref () {
13}
14class Foo {
15      static $i;
16      static string $s;
17}
18Foo::$i = 1;
19Foo::$s = Foo::$i;
20var_dump(Foo::$s -= ref());
21?>
22--EXPECT--
23string(1) "1"
24