summaryrefslogtreecommitdiff
path: root/Zend/tests/exception_002.phpt
blob: 4554200aab52745d987d1de614b9d6bd3a42d71d (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