Arquivos
hhvm/hphp/test/quick/mod_zero.php
T
Eric Caruso 8d85957d57 Fixing OpMod emission not to trigger assert in simplifier
If you tried to mod something where the denominator
was cns(0), things would go horribly, horribly wrong.
2013-07-06 11:12:16 -07:00

11 linhas
90 B
PHP

<?php
function one() {
return 1;
}
function main() {
var_dump(one() % 0);
}
main();