1--TEST--
2Add $GLOBALS to itself
3--FILE--
4<?php
5$GLOBALS += $GLOBALS;
6$x = $GLOBALS + $GLOBALS;
7?>
8===DONE===
9--EXPECT--
10===DONE===
11