mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
14 lines
335 B
PHP
14 lines
335 B
PHP
--TEST--
|
|
Bug #24699 (Memory Leak with per-class constants)
|
|
--SKIPIF--
|
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 is needed'); ?>
|
|
--FILE--
|
|
<?php
|
|
class TEST { const FOO = SEEK_CUR; };
|
|
class TEST2 { const FOO = 1; };
|
|
class TEST3 { const FOO = PHP_VERSION; };
|
|
print TEST::FOO."\n";
|
|
?>
|
|
--EXPECT--
|
|
1
|