1--TEST-- 2JIT ASSIGN_OBJ_OP: Unsupported types 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7--FILE-- 8<?php 9class Test{ 10} 11 12$test = new Test; 13(function(){$this->y.=[];})->call($test); 14?> 15--EXPECTF-- 16Deprecated: Creation of dynamic property Test::$y is deprecated in %sassign_obj_op_001.php on line 6 17 18Warning: Undefined property: Test::$y in %sassign_obj_op_001.php on line 6 19 20Warning: Array to string conversion in %sassign_obj_op_001.php on line 6 21