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