xref: /php-src/ext/opcache/tests/jit/assign_012.phpt (revision c16ad918)
1--TEST--
2JIT ASSIGN: 012
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 = 0;
14    $c = 2;
15    $d = 3;
16    if ($a) {
17        $b = array();
18    } else {
19        $b =& $c;
20    }
21    $b = $d;
22    var_dump($b, $c);
23}
24foo();
25?>
26--EXPECT--
27int(3)
28int(3)
29