php-src/Zend/tests/bug76754.phpt
Nikita Popov 9ed2f4898b Don't disable opcache for generic tests
Even if the original issue only reproduces without opcache, we
should still allow running them with and without opcache.
2020-11-04 11:12:12 +01:00

16 lines
187 B
PHP

--TEST--
Bug #76754 (parent private constant in extends class memory leak)
--FILE--
<?php
class FOO
{
private const FOO = 'BAR';
}
class BAR extends FOO { }
?>
okey
--EXPECT--
okey