xref: /PHP-8.2/ext/opcache/tests/jit/assign_021.phpt (revision e9f783fc)
1--TEST--
2JIT ASSIGN: 021
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8;opcache.jit_debug=257
9--EXTENSIONS--
10opcache
11--FILE--
12<?php
13function foo() {
14    $a = array();
15    $b = $a;
16    $c = 1;
17    $d = $a = $c;
18    var_dump($b, $d);
19}
20foo();
21?>
22--EXPECT--
23array(0) {
24}
25int(1)
26