Arquivos
hhvm/hphp/test/quick/const_cflow.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

16 linhas
220 B
PHP

<?php
function f(&$x) { var_dump($x); }
function test($b, $c) {
$x = false && $b;
$x += true && $b;
$x += false || $b;
$x += true || $b;
$x += false ? $b : $c;
$x += true ? $b : $c;
f($x);
}
test(2, 3);