1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/opcache/tests/jit/fetch_obj_005.phpt
2024-01-15 09:39:13 +01:00

22 lines
468 B
PHP

--TEST--
JIT: FETCH_OBJ 005
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit=tracing
--EXTENSIONS--
opcache
--FILE--
<?php
for ($i = 0; $i < 3; $i++) {
$a =& $b;
$a->p;
}
?>
--EXPECTF--
Warning: Attempt to read property "p" on null in %sfetch_obj_005.php on line 4
Warning: Attempt to read property "p" on null in %sfetch_obj_005.php on line 4
Warning: Attempt to read property "p" on null in %sfetch_obj_005.php on line 4