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