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_dim_017.phpt
2023-10-30 17:54:30 +03:00

20 lines
279 B
PHP

--TEST--
JIT ASSIGN_DIM: 017
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
function test() {
for($i = 0; $i < 10; $i++) {
$a[] = 0;
$a = false;
}
}
@test();
?>
DONE
--EXPECT--
DONE