mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
16 lines
171 B
PHP
16 lines
171 B
PHP
--TEST--
|
|
Wrong assertion
|
|
--FILE--
|
|
<?php
|
|
function foo($transitions) {
|
|
foreach ($transitions as $transition) {
|
|
if (isEmpty()) {
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
OK
|
|
--EXPECT--
|
|
OK
|