mirror of
https://github.com/php/php-src.git
synced 2026-04-28 10:43:30 +02:00
78c7289f69
Fixes oss-fuzz #44863
13 lines
131 B
PHP
13 lines
131 B
PHP
--TEST--
|
|
Incorrect DCE of FREE
|
|
--FILE--
|
|
<?php
|
|
function foo() {
|
|
$a = $r[] = $r = []&$y;
|
|
list(&$y)=$a;
|
|
}
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|