Merge branch 'PHP-8.0' into PHP-8.1

* PHP-8.0:
  Fix bug #81510
This commit is contained in:
Nikita Popov 2021-10-18 12:47:00 +02:00
commit ec90e85d8c

View file

@ -12,8 +12,8 @@ max_execution_time=1
hard_timeout=1
--FILE--
<?php
$a1 = range(1, 1000000);
$a2 = range(100000, 1999999);
$a1 = range(1, 2000000);
$a2 = range(100000, 2999999);
array_intersect($a1, $a2);
?>
--EXPECTF--