php-8.0.30-src/Zend/tests/jump14.phpt

29 lines
192 B
PHP

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