mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
7aacc705d0
Closes GH-5958
14 lines
219 B
PHP
14 lines
219 B
PHP
--TEST--
|
|
Bug #67368 (Memory leak with immediately dereferenced array in class constant)
|
|
--INI--
|
|
report_memleaks=1
|
|
--FILE--
|
|
<?php
|
|
class FooBar {
|
|
const bar = ["bar" => 3]["bar"];
|
|
}
|
|
echo "okey";
|
|
?>
|
|
--EXPECT--
|
|
okey
|