1--TEST-- 2Fundamental memory leak test on temporaries 3--XFAIL-- 4See Bug #62210 and attempt to fix it in "tmp_livelibess" branch 5--FILE-- 6<?php 7 8function ops() { 9 throw new Exception(); 10} 11 12try{ 13 $x = 1; 14 $r = [$x] + ops(); 15} catch (Exception $e) { 16} 17 18?> 19==DONE== 20--EXPECT-- 21==DONE== 22