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

26 lines
368 B
PHP

--TEST--
SCCP 028: Don't propagate typed properties
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
opcache.preload=
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class Foo {
public int $bar = 1;
}
function test() {
$foo = new Foo();
$foo->bar = "10";
var_dump($foo->bar);
}
test();
?>
--EXPECT--
int(10)