exception_002.phpt 150 B

12345678910111213141516171819
  1. --TEST--
  2. Testing exception and GOTO
  3. --FILE--
  4. <?php
  5. goto foo;
  6. try {
  7. print 1;
  8. foo:
  9. print 2;
  10. } catch (Exception $e) {
  11. }
  12. ?>
  13. --EXPECT--
  14. 2