xref: /PHP-8.0/ext/opcache/tests/opt/sccp_019.phpt (revision 0684b9fc)
1--TEST--
2SCCP 019: Array assignment
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.optimization_level=-1
7opcache.opt_debug_level=0x20000
8opcache.preload=
9--SKIPIF--
10<?php require_once('skipif.inc'); ?>
11--FILE--
12<?php
13function foo(int $x) {
14    $a[0] = 5;
15    $a[1] = $x;
16    $b = $a;
17    return $b[0];
18}
19?>
20--EXPECTF--
21$_main:
22     ; (lines=1, args=0, vars=0, tmps=0)
23     ; (after optimizer)
24     ; %ssccp_019.php:1-9
250000 RETURN int(1)
26
27foo:
28     ; (lines=2, args=1, vars=1, tmps=0)
29     ; (after optimizer)
30     ; %ssccp_019.php:2-7
310000 CV0($x) = RECV 1
320001 RETURN int(5)
33