1--TEST--
2Division by zero in compound operator with type coercion
3--FILE--
4<?php
5$x = 42;
6try {
7    $$x /= 0;
8} catch (DivisionByZeroError $e) {
9    echo $e->getMessage(), "\n";
10}
11?>
12--EXPECTF--
13Warning: Undefined variable $42 in %s on line %d
14Division by zero
15