1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 21:11:02 +02:00
Files
archived-php-src/Zend/tests/try/finally_goto_005.phpt
2015-07-10 23:29:07 +02:00

16 lines
206 B
PHP

--TEST--
There must be a difference between label: try { ... } and try { label: ... }
--FILE--
<?php
label: try {
goto label;
} finally {
print "success";
return; // don't loop
}
?>
--EXPECT--
success