Arquivos
hhvm/hphp/test/quick/exit.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
185 B
PHP

<?php
function g() {
exit;
$x = exit;
exit(0);
$x = exit(0);
exit + 3;
$x = exit + 3;
exit(1) + 3;
$x = exit(1) + 3;
f($x, exit($x), $x + 1);
}
call_user_func("g");