045.phpt 270 B

123456789101112131415161718
  1. --TEST--
  2. Corrupted CFG due to unreachable free with match
  3. --FILE--
  4. <?php
  5. function test() {
  6. var_dump(match(x){});
  7. match(y){
  8. 3, 4 => 5,
  9. };
  10. }
  11. try {
  12. test();
  13. } catch (Error $e) {
  14. echo $e->getMessage(), "\n";
  15. }
  16. ?>
  17. --EXPECT--
  18. Undefined constant "x"