php-src/Zend/tests/jump11.phpt

27 lines
427 B
Plaintext
Raw Normal View History

2007-12-13 13:51:02 +00:00
--TEST--
jump 08: goto inside switch in constructor
--FILE--
<?php
class foobar {
public function __construct() {
2018-09-16 17:16:42 +00:00
switch (1) {
2007-12-13 13:51:02 +00:00
default:
goto b;
a:
print "ok!\n";
2018-09-16 17:16:42 +00:00
break;
2007-12-13 13:51:02 +00:00
b:
print "ok!\n";
goto a;
2018-09-16 17:16:42 +00:00
}
2007-12-13 13:51:02 +00:00
print "ok!\n";
}
}
new foobar;
?>
--EXPECT--
ok!
ok!
ok!