1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/opcache/tests/jit/assign_obj_004.phpt
2023-10-25 09:42:07 +03:00

18 lines
257 B
PHP

--TEST--
JIT ASSIGN_OBJ: Assign property to undefined value
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
functiOn foo() {
$obj->y = 42;
$obj && y;
}
?>
DONE
--EXPECT--
DONE