1--TEST-- 2PRE_INC/DEC refcounted typed property 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7opcache.jit_buffer_size=1M 8opcache.protect_memory=1 9--FILE-- 10<?php 11class Test { 12 public string $prop; 13} 14 15$test = new Test; 16$test->prop = "a"; 17++$test->prop; 18--$test->prop; 19var_dump(++$test->prop); 20var_dump(--$test->prop); 21?> 22--EXPECT-- 23string(1) "c" 24string(1) "c" 25