mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

While the zvals may be different, they may still point to the same array. Fixes oss-fuzz #26245.
10 lines
131 B
PHP
10 lines
131 B
PHP
--TEST--
|
|
Add $GLOBALS to itself
|
|
--FILE--
|
|
<?php
|
|
$GLOBALS += $GLOBALS;
|
|
$x = $GLOBALS + $GLOBALS;
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|