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