summaryrefslogtreecommitdiff
path: root/Zend/tests/try/try_finally_022.phpt
blob: 51f6a264195e70474fe4ca0f269eede1d5bbf9d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
--TEST--
Try finally (exception in "return" statement)
--FILE--
<?php
class A {
	public $x = 1;
	public $y = 2;
	function __destruct() {
		throw new Exception();
	}
}
try{
	$a = 0;
	switch ($a) {
		case 0:
	}
	switch ($a) {
		case 0:
	}
	switch ($a) {
		case 0:
	}
	foreach([new stdClass()] as $x) {
		foreach(new A() as $a) {
			foreach([new stdClass()] as $y) {
				try {
					if (0) { echo "0" . (int)5; }
					return $a;
				} catch (Exception $e) {
					echo "exception1\n";
				}
			}
		}
	}
} catch (Exception $e) {
	echo "exception2\n";
}
?>
--EXPECT--
exception2