1--TEST-- 2PRE_INC_OBJ: 003 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7opcache.protect_memory=1 8--FILE-- 9<?php 10class Test { 11 public float $prop = 1.0; 12} 13$test = new Test; 14$r = &$test->prop; 15$v = --$test->prop; 16var_dump($v); 17?> 18--EXPECT-- 19float(0)