php-8.0.30-src/ext/opcache/tests/opt/sccp_020.phpt

23 lines
342 B
PHP

--TEST--
SCCP 020: Object assignment
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
;opcache.opt_debug_level=0x20000
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function foo() {
$b = $a = new stdClass;
$a->x = 5;
$b->x = 42;
echo $a->x;
echo "\n";
}
foo();
?>
--EXPECT--
42