ssa_bug_011.phpt 221 B

1234567891011121314151617
  1. --TEST--
  2. Wrong assertion
  3. --EXTENSIONS--
  4. opcache
  5. --FILE--
  6. <?php
  7. function foo($transitions) {
  8. foreach ($transitions as $transition) {
  9. if (isEmpty()) {
  10. continue;
  11. }
  12. }
  13. }
  14. ?>
  15. OK
  16. --EXPECT--
  17. OK