--TEST-- GH-10168: Assign prop --FILE-- value = null; } } function test($box) { var_dump($box->value = new Test); } $box = new Box(); $box->value = new Test; test($box); // Second call tests the cache slot path test($box); ?> --EXPECT-- object(Test)#3 (0) { } object(Test)#3 (0) { }