1--TEST--
2Fundamental memory leak test on temporaries
3--FILE--
4<?php
5
6function ops() {
7    throw new Exception();
8}
9
10try{
11    $x = 1;
12    $r = [$x] + ops();
13} catch (Exception $e) {
14}
15
16?>
17==DONE==
18--EXPECT--
19==DONE==
20