bug81046.phpt 257 B

12345678910111213141516171819
  1. --TEST--
  2. Bug #81046: Literal compaction merges non-equal related literals
  3. --FILE--
  4. <?php
  5. class Test {
  6. static function methoD() {
  7. echo "Method called\n";
  8. }
  9. }
  10. const methoD = 1;
  11. var_dump(methoD);
  12. test::methoD();
  13. ?>
  14. --EXPECT--
  15. int(1)
  16. Method called