--TEST--
jump 08: goto inside switch in constructor
--FILE--
<?php
class foobar {
public function __construct() {
switch (1) {
default:
goto b;
a:
print "ok!\n";
break;
b:
goto a;
}
new foobar;
?>
--EXPECT--
ok!