1--TEST--
2Ensure null-initialization of nullable typed static property taken by reference
3--FILE--
4<?php
5
6class A {
7    public static ?int $a;
8}
9
10$x =& A::$a;
11var_dump($x);
12
13?>
14--EXPECT--
15NULL
16