1--TEST--
2Exception after separation during indirect write to fcall result
3--XFAIL--
4See Bug #62210 and attempt to fix it in "tmp_livelibess" branch
5--FILE--
6<?php
7
8function throwing() { throw new Exception; }
9
10function getArray($x) { return [$x]; }
11
12try {
13    getArray(0)[throwing()] = 1;
14} catch (Exception $e) {
15    echo "Exception\n";
16}
17
18?>
19--EXPECT--
20Exception
21