mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
29 lines
161 B
Plaintext
29 lines
161 B
Plaintext
|
--TEST--
|
||
|
Testing GOTO inside blocks
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
goto A;
|
||
|
|
||
|
{
|
||
|
B:
|
||
|
goto C;
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
A:
|
||
|
goto B;
|
||
|
|
||
|
|
||
|
|
||
|
{
|
||
|
C:
|
||
|
{
|
||
|
print "Done!\n";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
Done!
|