mirror of
https://github.com/php/php-src.git
synced 2024-12-16 05:15:03 +08:00
19 lines
209 B
PHP
19 lines
209 B
PHP
--TEST--
|
|
GH-10168: Assign dim
|
|
--FILE--
|
|
<?php
|
|
|
|
class Test {
|
|
function __destruct() {
|
|
$GLOBALS['a'] = null;
|
|
}
|
|
}
|
|
|
|
$a = [new Test];
|
|
var_dump($a[0] = new Test);
|
|
|
|
?>
|
|
--EXPECT--
|
|
object(Test)#2 (0) {
|
|
}
|