Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/Zend/tests/try_finally_005.phpt

--TEST--
Try finally (with long goto)
--FILE--
<?php
function foo () {
   try {
   } finally {
      goto label;
   }
label:
   return 1;
}

foo();
?>
--EXPECTF--
Fatal error: jump out of a finally block is disallowed in %stry_finally_005.php on line %d