Arquivos
hhvm/hphp/test/quick/doublejump.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

30 linhas
283 B
PHP

<?php
function f() {
$a = true;
$b = true;
$i = 0;
if($a) {
if($b) {
$i = 1;
} else {
$i = 2;
}
} else {
if($b) {
$i = 3;
} else {
$i = 4;
}
}
}
function main() {
for($i = 0; $i < 1000; $i++) {
f();
}
}
main();