php-8.0.30-src/ext/opcache/tests/bug81046.phpt

20 lines
257 B
PHP

--TEST--
Bug #81046: Literal compaction merges non-equal related literals
--FILE--
<?php
class Test {
static function methoD() {
echo "Method called\n";
}
}
const methoD = 1;
var_dump(methoD);
test::methoD();
?>
--EXPECT--
int(1)
Method called