mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
11 lines
173 B
PHP
11 lines
173 B
PHP
--TEST--
|
|
Bug #72543.5 (different references behavior comparing to PHP 5)
|
|
--FILE--
|
|
<?php
|
|
$arr = [1];
|
|
$ref =& $arr[0];
|
|
var_dump($arr[0] + ($arr[0] = 2));
|
|
?>
|
|
--EXPECT--
|
|
int(4)
|