xref: /php-src/ext/opcache/tests/jit/assign_026.phpt (revision c16ad918)
1--TEST--
2JIT ASSIGN: 026
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(1,2,3);
14    $b=&$a;
15    $b=1;
16    $a = new stdClass;
17    $a->a=1;
18    $a->b=2;
19    $b=&$a;
20}
21foo();
22echo "ok\n";
23?>
24--EXPECT--
25ok
26