summaryrefslogtreecommitdiff
path: root/Zend/tests/temporary_cleaning_001.phpt
blob: f2ccbb35b8f1dab5d3d8cf0ec9dcec6cfc19ed8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Temporary leak on exception
--FILE--
<?php

function ops() {
    throw new Exception();
}

try {
	$x = 2;
	$y = new stdClass;
	while ($x-- && new stdClass) {
		$r = [$x] + ($y ? ((array) $x) + [2] : ops());
		$y = (array) $y;
	}
} catch (Exception $e) {
}

?>
==DONE==
--EXPECT--
==DONE==