php-src/ext/opcache/tests/ssa_bug_011.phpt
Christoph M. Becker 3e25ddb07b Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2:
  Add missing SKIPIFs
2019-07-01 18:12:28 +02:00

18 lines
219 B
PHP

--TEST--
Wrong assertion
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function foo($transitions) {
foreach ($transitions as $transition) {
if (isEmpty()) {
continue;
}
}
}
?>
OK
--EXPECT--
OK