temporary_cleaning_008.phpt 234 B

123456789101112131415
  1. --TEST--
  2. Optimization of constant switch expression
  3. --FILE--
  4. <?php
  5. try {
  6. switch ("1" . (int)2) {
  7. case 12:
  8. throw new Exception();
  9. }
  10. } catch (Exception $e) {
  11. echo "exception\n";
  12. }
  13. ?>
  14. --EXPECT--
  15. exception