inference_010.phpt 313 B

123456789101112131415161718
  1. --TEST--
  2. Type inference 010: FRTCH_DIM_W
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.optimization_level=-1
  7. --FILE--
  8. <?php
  9. function foo() {
  10. $x = false;
  11. $x[] = &$y;
  12. }
  13. foo();
  14. ?>
  15. DONE
  16. --EXPECTF--
  17. Deprecated: Automatic conversion of false to array is deprecated in %sinference_010.php on line 4
  18. DONE