summaryrefslogtreecommitdiff
path: root/Zend/tests/temporary_cleaning_001.phpt
blob: 9622a4a5421b1111544209611cd03992ab1e0242 (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==