1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/Zend/tests/jump14.phpt
2020-02-03 22:52:20 +01:00

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!