summaryrefslogtreecommitdiff
path: root/Zend/tests/bug79791.phpt
blob: f8b80a51d9687b7ae30d78e0381ee754135ff54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Bug #79791: Assertion failure when unsetting variable during binary op
--FILE--
<?php
set_error_handler(function() {
    unset($GLOBALS['c']);
});
$c -= 1;
var_dump($c);
?>
--EXPECT--
int(-1)