You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
212 B

--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--
ok!
ok!
ok!