1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
--TEST-- Attempt to free invalid structure (result of ROPE_INIT is not a zval) --FILE-- <?php set_error_handler(function () { throw new Exception(); }); $a = []; $b = ""; try { echo "$a$b\n"; } catch (Exception $ex) { } ?> DONE --EXPECT-- DONE