Arquivos
hhvm/hphp/test/vm/incdec-2.php
T
mwilliams 46fe09ca5e IncDec bool needs to push a value
In the ir, it didnt, resulting in crashes/bogus values
2013-03-27 17:39:18 -07:00

14 linhas
135 B
PHP

<?php
function test($a, $b) {
$a++;
var_dump($a,$b);
}
$a[] = 1;
test(false, $a);
test(true, $a);
test(1, $a);
test(1.0, $a);