1--TEST--
2Division by zero in compound assignment with refcounted operand
3--FILE--
4<?php
5$h = "1";
6$h .= "2";
7try {
8    $h /= 0;
9} catch (DivisionByZeroError $e) {
10    echo $e->getMessage(), "\n";
11}
12var_dump($h);
13?>
14--EXPECT--
15Division by zero
16string(2) "12"
17