mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
21 lines
290 B
PHP
21 lines
290 B
PHP
--TEST--
|
|
jump 09: goto in declare statement
|
|
--FILE--
|
|
<?php
|
|
a: print "ok!\n";
|
|
goto c;
|
|
declare (ticks=1) {
|
|
b:
|
|
print "ok!\n";
|
|
exit;
|
|
}
|
|
c:
|
|
print "ok!\n";
|
|
goto b;
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Ticks is deprecated and will be removed in PHP 6 in %s on line %d
|
|
ok!
|
|
ok!
|
|
ok!
|