summaryrefslogtreecommitdiff
path: root/Zend/tests/exception_002.phpt
blob: fee76de0eed3f6ce1a2cfd1bd7d2dd44cd5712dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Testing exception and GOTO
--FILE--
<?php

goto foo;

try {
    print 1;

    foo:
    print 2;
} catch (Exception $e) {

}

?>
--EXPECT--
2