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/gh15666.phpt
2024-09-09 20:10:16 +02:00

22 lines
289 B
PHP

--TEST--
GH-15661 (Access null pointer in Zend/Optimizer/zend_inference.c)
--EXTENSIONS--
opcache
--INI--
opcache.jit=1201
opcache.jit_buffer_size=64M
--FILE--
<?php
function test() {
require 'dummy.inc';
global $foo, $bar;
$foo |= $bar;
}
echo "Done\n";
?>
--EXPECT--
Done