mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
15 lines
228 B
PHP
15 lines
228 B
PHP
--TEST--
|
|
Bug #78335: Static properties containing cycles report as leak (internal class variant)
|
|
--EXTENSIONS--
|
|
zend_test
|
|
--FILE--
|
|
<?php
|
|
|
|
$foo = [&$foo];
|
|
_ZendTestClass::$_StaticProp = $foo;
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|