mirror of
https://github.com/php/php-src.git
synced 2026-04-01 21:22:13 +02:00
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
20 lines
322 B
PHP
20 lines
322 B
PHP
--TEST--
|
|
Bug #71843 (null ptr deref ZEND_RETURN_SPEC_CONST_HANDLER (zend_vm_execute.h:3479))
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=0xFFFFBFFF
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
define('E', 'E');
|
|
define('R', 'R');
|
|
define('See', 'See');
|
|
"0" & ~E & ~R;
|
|
6 && ~See
|
|
?>
|
|
okey
|
|
--EXPECT--
|
|
okey
|