mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
16 lines
228 B
PHP
16 lines
228 B
PHP
--TEST--
|
|
GH-15658 (Segmentation fault in Zend/zend_vm_execute.h)
|
|
--EXTENSIONS--
|
|
opcache
|
|
--INI--
|
|
opcache.jit=0101
|
|
opcache.jit_buffer_size=64M
|
|
--FILE--
|
|
<?php
|
|
echo match (random_int(1, 2)) {
|
|
1, 2 => 'foo',
|
|
};
|
|
?>
|
|
--EXPECT--
|
|
foo
|