mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
12 lines
193 B
PHP
12 lines
193 B
PHP
--TEST--
|
|
Bug #67368 (Memory leak with immediately dereferenced array in class constant)
|
|
--FILE--
|
|
<?php
|
|
class FooBar {
|
|
const bar = ["bar" => 3]["bar"];
|
|
}
|
|
echo "okey";
|
|
?>
|
|
--EXPECT--
|
|
okey
|