mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
13 lines
211 B
PHP
13 lines
211 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";
|
|
--EXPECTF--
|
|
okey
|