1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +02:00
Files
archived-php-src/ext/opcache/tests/ssa_bug_011.phpt
2020-02-03 22:52:20 +01:00

18 lines
246 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