1--TEST--
2Occupied next element
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7--FILE--
8<?php
9$float = 100000000000000000000000000000000000000;
10$string_float= PHP_INT_MAX;
11$a = [$float => 'a', $string_float => 'b', 'c', 'd'];
12?>
13--EXPECTF--
14Deprecated: Implicit conversion from float 1.0E+38 to int loses precision in %sarray_elem_002.php on line 4
15
16Fatal error: Uncaught Error: Cannot add element to the array as the next element is already occupied in %sarray_elem_002.php:4
17Stack trace:
18#0 {main}
19  thrown in %sarray_elem_002.php on line 4
20