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