1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 21:11:02 +02:00
Files
archived-php-src/ext/opcache/tests/ssa_bug_011.phpt
2018-09-10 15:26:38 +03:00

16 lines
171 B
PHP

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