Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/Zend/tests/jump11.phpt

--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:
                    print "ok!\n";
                    goto a;
        }        
        print "ok!\n";
    }
}

new foobar;
?>
--EXPECT--
ok!
ok!
ok!