xref: /PHP-8.3/ext/opcache/tests/jit/cast_002.phpt (revision 3661c193)
1--TEST--
2JIT CAST: 002
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--FILE--
9<?php
10function test(?int $i) {
11    $a = (array) $i;
12    $a[-1] = 1;
13    var_dump($a);
14}
15test(null);
16?>
17--EXPECT--
18array(1) {
19  [-1]=>
20  int(1)
21}
22