summaryrefslogtreecommitdiff
path: root/Zend/tests/try/finally_goto_003.phpt
blob: 9f4115fee6ebcfc4c8254e0b181531805f972891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
jmp into a finally block 03
--FILE--
<?php
function foo() {
	try {
    } finally {
	goto test;
test:
    }
}
echo "okey";
?>
--EXPECT--
okey