php-src/Zend/tests/gh10168/assign_static_prop_ref.phpt
2023-04-04 18:55:47 +02:00

21 lines
253 B
PHP

--TEST--
GH-10168: Assign static prop ref
--FILE--
<?php
class Test {
static ?Test $test;
function __destruct() {
Test::$test = null;
}
}
Test::$test = new Test;
$tmp = new Test;
var_dump(Test::$test = &$tmp);
?>
--EXPECT--
NULL