123456789101112131415161718192021222324252627 |
- --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
|