1--TEST--
2Test typed properties allow fetch reference for init array
3--FILE--
4<?php
5class Foo {
6	public int $bar = 1;
7}
8
9$foo = new Foo();
10
11$array = [&$foo->bar];
12var_dump($array);
13?>
14--EXPECT--
15array(1) {
16  [0]=>
17  &int(1)
18}
19