1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/Zend/tests/bug69201.phpt

28 lines
330 B
PHP

--TEST--
Bug #69201 (Memory leak using iterator and get by reference on PHP 7)
--FILE--
<?php
class Entity
{
protected $_properties = [];
public function &__get($property)
{
$value = null;
return $value;
}
public function __set($property, $value)
{
}
}
$e = new Entity;
$e->a += 1;
echo "okey";
?>
--EXPECT--
okey