1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/bug69201.phpt
2020-02-03 22:52:20 +01:00

28 lines
363 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