unreachable_phi_cycle.phpt 314 B

123456789101112131415
  1. --TEST--
  2. Unreachable phi cycle
  3. --FILE--
  4. <?php
  5. // The inner loop is dead, but SCCP reachability analysis doesn't realize this,
  6. // as this is determined based on type information.
  7. function test() {
  8. for (; $i--;) {
  9. for(; x;);
  10. }
  11. }
  12. test();
  13. ?>
  14. --EXPECTF--
  15. Warning: Undefined variable $i in %s on line %d