28 lines
441 B
PHP
28 lines
441 B
PHP
--TEST--
|
|
Do not constant fold increment of array
|
|
--FILE--
|
|
<?php
|
|
function test_inc_array() {
|
|
$a = [];
|
|
$a++;
|
|
}
|
|
function test_inc_partial_array($k) {
|
|
$a = [];
|
|
$a[$k] = 0;
|
|
$a++;
|
|
}
|
|
try {
|
|
test_inc_array();
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
test_inc_partial_array(0);
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Cannot increment array
|
|
Cannot increment array
|