php-src/Zend/tests/jump14.phpt
2018-10-14 19:45:12 +02:00

29 lines
159 B
PHP

--TEST--
Testing GOTO inside blocks
--FILE--
<?php
goto A;
{
B:
goto C;
return;
}
A:
goto B;
{
C:
{
print "Done!\n";
}
}
?>
--EXPECT--
Done!