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

1.1     ! misho       1: --TEST--
        !             2: Testing exception and GOTO
        !             3: --FILE--
        !             4: <?php 
        !             5: 
        !             6: goto foo;
        !             7: 
        !             8: try {
        !             9:        print 1;
        !            10:        
        !            11:        foo:
        !            12:        print 2;
        !            13: } catch (Exception $e) {
        !            14:        
        !            15: }
        !            16: 
        !            17: ?>
        !            18: --EXPECT--
        !            19: 2

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