1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00
Files
Dmitry Stogov 5350952a37 Fix assertion
Fixes oss-fuzz #65233
2023-12-25 13:22:03 +03:00

13 lines
156 B
PHP

--TEST--
DCE may remove FREE after FETCH_LIST_W
--FILE--
<?php
function () {
$a = $r[][] = $r = [] & $y;
+list(&$y) = $a;
}
?>
DONE
--EXPECT--
DONE