summaryrefslogtreecommitdiff
path: root/Zend/tests/temporary_cleaning_015.phpt
blob: f5e115faa970b2efd7239d38fe4805fdba6accae (plain)
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