Arquivos
hhvm/hphp/test/quick/div_fpe.php
T
2013-07-01 13:41:01 -07:00

16 linhas
262 B
PHP

<?php
function main() {
$x = -1;
$y = -9223372036854775807;
--$y;
var_dump($y / $x); // minimum int divided by -1, shouldn't sigfpe
$x = -1;
$y = -9223372036854775807;
--$y;
var_dump($y % $x); // minimum int mod -1, shouldn't sigfpe
}
main();