Arquivos
hhvm/hphp/test/vm/doublejump.php
T
Jordan Delong 363d1bb20f Code move src/ -> hphp/
This change is mostly for FB internal organizational reasons.
Building is not effected beyond the fact that the target now
lands in hphp/hhvm/hhvm rather than src/hhvm/hhvm.
2013-02-11 02:10:41 -08: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();