1--TEST--
2Dynamic prop name with type conversion in reference position should not leak
3--FILE--
4<?php
5$obj = new stdClass;
6$name = 0.0;
7$ref =& $obj->$name;
8var_dump($obj);
9?>
10--EXPECT--
11object(stdClass)#1 (1) {
12  ["0"]=>
13  &NULL
14}
15