Annotation of embedaddon/php/Zend/tests/jump12.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: jump 09: goto in declare statement
        !             3: --FILE--
        !             4: <?php
        !             5: a: print "ok!\n";
        !             6: goto c;
        !             7: declare (ticks=1) {
        !             8:     b:
        !             9:         print "ok!\n";
        !            10:         exit;
        !            11: }
        !            12: c:
        !            13:     print "ok!\n";
        !            14:     goto b;
        !            15: ?>
        !            16: --EXPECTF--
        !            17: ok!
        !            18: ok!
        !            19: ok!

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>