mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
19 lines
230 B
Plaintext
19 lines
230 B
Plaintext
|
--TEST--
|
||
|
Bug #76754 (parent private constant in extends class memory leak)
|
||
|
--INI--
|
||
|
opcache.enable=0
|
||
|
opcache.enable_cli=0
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class FOO
|
||
|
{
|
||
|
private const FOO = 'BAR';
|
||
|
}
|
||
|
|
||
|
class BAR extends FOO { }
|
||
|
?>
|
||
|
okey
|
||
|
--EXPECT--
|
||
|
okey
|