php-src/Zend/tests/jump14.phpt

29 lines
161 B
Plaintext
Raw Normal View History

2008-05-11 03:50:28 +00:00
--TEST--
Testing GOTO inside blocks
--FILE--
<?php
goto A;
{
B:
goto C;
return;
}
A:
goto B;
{
C:
{
print "Done!\n";
}
}
?>
--EXPECT--
Done!