inference_005.phpt 293 B

12345678910111213141516
  1. --TEST--
  2. Type inference 005: Use MAY_BE_NULL result (insted of empty) for ASSIGN_DIM with invalid arguments
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.optimization_level=-1
  7. --FILE--
  8. <?php
  9. function foo() {
  10. $a = $r[] = $r = [] & $y;
  11. +list(&$y) = $a;
  12. }
  13. ?>
  14. DONE
  15. --EXPECT--
  16. DONE