1--TEST--
2FETCH_STATIC_PROP_W should not return UNDEF
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--FILE--
9<?php
10class F {
11    static array $a;
12}
13F::$a[] = 2;
14var_dump(F::$a);
15?>
16--EXPECT--
17array(1) {
18  [0]=>
19  int(2)
20}
21